forked from BDQ/deface
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeface.gemspec
28 lines (25 loc) · 1.15 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
28
Gem::Specification.new do |s|
s.name = "deface"
s.version = "1.0.2"
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 = "brian@spreecommerce.com"
s.extra_rdoc_files = [
"README.markdown", "CHANGELOG.markdown"
]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.homepage = "https://github.com/DefaceCommunity/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_dependency('polyglot')
s.add_development_dependency('rspec', '>= 3.1.0')
s.add_development_dependency('haml', '>= 3.1.4')
s.add_development_dependency('slim', '>= 2.0.0') # 2.0.1 breaks slim loader specs
s.add_development_dependency('simplecov', '>= 0.6.4')
s.add_development_dependency('generator_spec', '~> 0.8')
end