forked from spree/deface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeface.gemspec
27 lines (24 loc) · 1.06 KB
/
deface.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
Gem::Specification.new do |s|
s.name = "deface"
s.version = "1.0.0.rc3"
s.authors = ["Brian D Quinn"]
s.description = "Deface is a library that allows you to customize ERB, Haml and Slim views in a Rails application without editing the underlying view."
s.email = "[email protected]"
s.extra_rdoc_files = [
"README.markdown"
]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.homepage = "https://github.com/spree/deface"
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.summary = "Deface is a library that allows you to customize ERB, Haml and Slim views in Rails"
s.add_dependency('nokogiri', '~> 1.6.0')
s.add_dependency('rails', '>= 3.1')
s.add_dependency('colorize', '>= 0.5.8')
s.add_development_dependency('rspec', '>= 2.11.0')
s.add_development_dependency('haml', '>= 3.1.4')
s.add_development_dependency('slim', '>= 2.0.0')
s.add_development_dependency('simplecov', '>= 0.6.4')
s.add_development_dependency('generator_spec', '~> 0.8.5')
end