forked from spree/deface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeface.gemspec
More file actions
22 lines (19 loc) · 791 Bytes
/
deface.gemspec
File metadata and controls
22 lines (19 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = "deface"
s.version = "0.6.1"
s.authors = ["Brian D Quinn"]
s.description = "Deface is a library that allows you to customize ERB views in a Rails application without editing the underlying view."
s.email = "brian@railsdog.com"
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 = "http://github.com/railsdog/deface"
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.summary = "Deface is a library that allows you to customize ERB views in Rails"
s.add_dependency('nokogiri', '~> 1.5.0')
s.add_dependency('rails', '>= 3.0.9')
s.add_development_dependency('rspec', '>= 2.6.0')
end