-
Notifications
You must be signed in to change notification settings - Fork 0
/
mightbuy-models.gemspec
31 lines (27 loc) · 1.16 KB
/
mightbuy-models.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
29
30
31
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "mightbuy_models/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mightbuy_models"
s.version = MightbuyModels::VERSION
s.authors = ["Hemant Kumar"]
s.email = ["[email protected]"]
s.homepage = "http://mightbuy.it"
s.summary = "Extract most of mightbuy models into engine."
s.description = "Extract most of mightbuy models into engine."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", "~> 3.2.8"
s.add_dependency "friendly_id", "~> 4.0.8"
s.add_dependency "pg", "~> 0.11.0"
s.add_dependency "devise", "1.4.7"
s.add_dependency "dragonfly", "0.9.12"
s.add_dependency "mini_magick", "3.4"
s.add_dependency "squeel", "1.0.11"
s.add_development_dependency('rspec', '~> 2.11.0')
s.add_development_dependency("pry")
s.add_development_dependency("shoulda")
s.add_development_dependency("database_cleaner","~> 0.9.1")
s.add_development_dependency("factory_girl_rails", "~> 1.3.0")
end