-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheric.gemspec
More file actions
33 lines (26 loc) · 1.16 KB
/
eric.gemspec
File metadata and controls
33 lines (26 loc) · 1.16 KB
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "eric/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "eric"
s.version = Eric::VERSION
s.authors = ["Taavo Smith"]
s.email = ["taavo@dd9.com"]
s.homepage = "http://github.com/dd9/eric"
s.summary = "Half of a CMS. The front half."
s.description = "A CMS for sites which already have a back-end and don't want another. Pages, posts, and blocks."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", "~> 3.2.9"
s.add_dependency "ancestry"
s.add_dependency "friendly_id"
# s.add_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "capybara"
s.add_development_dependency "shoulda-matchers"
s.add_development_dependency "factory_girl_rails"
s.add_development_dependency "guard-rspec"
#s.add_development_dependency "spring" # spring won't work until a version > 0.0.10 is released
s.add_development_dependency "rb-fsevent", "~> 0.9.1"
end