forked from cmaujean/spree-snippets
-
Notifications
You must be signed in to change notification settings - Fork 2
/
spree_snippets.gemspec
27 lines (22 loc) · 952 Bytes
/
spree_snippets.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.platform = Gem::Platform::RUBY
s.name = 'spree_snippets'
s.version = '0.6.0'
s.summary = 'Admin configurable static content for CMS control over specific sections of a view'
#s.description = 'Add (optional) gem description here'
s.required_ruby_version = '>= 1.8.7'
s.author = 'Christopher Maujean'
s.email = '[email protected]'
s.homepage = 'http://github.com/cmaujean/spree-snippets'
s.rubyforge_project = 'spree_snippets'
s.files = Dir['README.markdown', 'LICENSE', 'lib/**/*', 'app/**/*', 'config/**/*', 'db/**/*']
s.require_path = 'lib'
s.requirements << 'none'
s.has_rdoc = true
s.add_dependency 'spree_core', '>= 1.0.0.rc3'
s.add_dependency(%q<spree_editor>, [">= 0.50.0"])
s.add_dependency(%q<formtastic>, [">= 2.0.2"])
s.add_development_dependency 'factory_girl'
s.add_development_dependency 'rspec-rails', '~> 2.8.0.rc1'
s.add_development_dependency 'sqlite3'
end