-
Notifications
You must be signed in to change notification settings - Fork 24
/
better_html.gemspec
40 lines (32 loc) · 1.39 KB
/
better_html.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
$LOAD_PATH.push(File.expand_path("../lib", __FILE__))
# Maintain your gem's version:
require "better_html/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "better_html"
s.version = BetterHtml::VERSION
s.authors = ["Francois Chagnon"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/Shopify/better-html"
s.summary = "Better HTML for Rails."
s.description = "Better HTML for Rails. Provides sane html helpers that make it easier to do the right thing."
s.license = "MIT"
s.required_ruby_version = ">= 3.0.0"
s.metadata = {
"bug_tracker_uri" => "https://github.com/Shopify/better-html/issues",
"changelog_uri" => "https://github.com/Shopify/better-html/releases",
"source_code_uri" => "https://github.com/Shopify/better-html/tree/v#{s.version}",
"allowed_push_host" => "https://rubygems.org",
}
s.extensions = ["ext/better_html_ext/extconf.rb"]
s.files = Dir["{app,config,db,lib,ext}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.require_paths = ["lib"]
s.add_dependency("actionview", ">= 6.0")
s.add_dependency("activesupport", ">= 6.0")
s.add_dependency("ast", "~> 2.0")
s.add_dependency("erubi", "~> 1.4")
s.add_dependency("parser", ">= 2.4")
s.add_dependency("smart_properties")
s.add_development_dependency("rake", "~> 13")
end