forked from ai/autoprefixer-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoprefixer-rails.gemspec
33 lines (27 loc) · 1.26 KB
/
autoprefixer-rails.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
require File.expand_path("../lib/autoprefixer-rails/version", __FILE__)
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "autoprefixer-rails"
s.version = AutoprefixerRails::VERSION.dup
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "Parse CSS and add vendor prefixes to CSS rules using" \
"values from the Can I Use website."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.extra_rdoc_files = ["README.md", "LICENSE", "CHANGELOG.md"]
s.require_path = "lib"
s.required_ruby_version = ">= 2.0"
s.author = "Andrey Sitnik"
s.email = "[email protected]"
s.homepage = "https://github.com/ai/autoprefixer-rails"
s.license = "MIT"
s.add_dependency "execjs", ">= 0"
s.add_development_dependency "rake"
s.add_development_dependency "rails"
s.add_development_dependency "compass"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "standard"
s.metadata["changelog_uri"] = "https://github.com/ai/autoprefixer-rails/blob/master/CHANGELOG.md"
s.metadata["source_code_uri"] = "https://github.com/ai/autoprefixer-rails"
s.metadata["bug_tracker_uri"] = "https://github.com/ai/autoprefixer-rails/issues"
end