-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathshopqi_app.gemspec
30 lines (24 loc) · 1007 Bytes
/
shopqi_app.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "shopqi_app/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "shopqi-app"
s.version = ShopQiApp::VERSION
s.authors = ["saberma"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/saberma/shopqi-app"
s.summary = "ShopQi app engine."
s.description = s.summary
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 3.2.6"
s.add_dependency "omniauth-shopqi", "~> 0.1.0"
s.add_dependency "shopkit", "~> 0.1.0"
s.add_dependency "haml", "~> 3.1.6"
s.add_dependency "bootstrap-sass", "~> 2.0.4.0"
s.add_dependency "settingslogic", "~> 2.0.8"
# s.add_dependency "jquery-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails", "~> 2.10.1"
s.add_development_dependency "factory_girl_rails", "~> 3.5.0"
end