forked from drhenner/ror_ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
96 lines (77 loc) · 2.5 KB
/
Gemfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
source 'http://rubygems.org'
#ruby "2.1.2"
## Bundle rails:
gem 'rails', '4.1.4'
gem 'uglifier', '>= 1.3.0'
gem 'sass-rails', '~> 4.0.0'
gem 'actionpack-page_caching'
gem "activemerchant", '~> 1.29'#, :lib => 'active_merchant'
gem "american_date"
# Use https if you are pushing to HEROKU
## NOTE: run the test before upgrading to the tagged version. It has had several deprecation warnings.
#gem 'authlogic', github: 'binarylogic/authlogic', ref: 'e4b2990d6282f3f7b50249b4f639631aef68b939'
gem 'authlogic'#, "~> 3.3.0"
gem 'scrypt'
gem "asset_sync"
gem 'awesome_nested_set', '~> 3.0.0'
gem 'aws-sdk'
gem 'bluecloth', '~> 2.2.0'
gem 'cancan', '~> 1.6.8'
gem 'chronic'
# Use https if you are pushing to HEROKU
#gem 'compass-rails', git: 'https://github.com/Compass/compass-rails.git'
gem 'compass-rails', git: 'git://github.com/Compass/compass-rails.git'
gem 'dynamic_form'
gem 'jbuilder'
gem "friendly_id", '~> 5.0.1'#, :git => "[email protected]:FriendlyId/friendly_id.git", :branch => 'rails4'
gem "jquery-rails", '~> 3.1.1'
gem 'jquery-ui-rails'
gem 'json', '~> 1.8.0'
#gem "nifty-generators", :git => 'git://github.com/drhenner/nifty-generators.git'
gem 'nokogiri', '~> 1.6.0'
gem 'paperclip', '~> 4.0'
gem 'prawn', '~> 0.12.0'
gem "rails3-generators", "~> 1.0.0"
#git: "https://github.com/neocoin/rails3-generators.git"
gem "rails_config"
gem 'rmagick', :require => 'RMagick'
gem 'rake', '~> 10.1'
# gem 'resque', require: 'resque/server'
gem 'state_machine', '~> 1.2.0'
#gem 'sunspot_solr', '~> 2.0.0'
#gem 'sunspot_rails', '~> 2.0.0'
gem 'will_paginate', '~> 3.0.4'
gem 'zurb-foundation', '~> 4.3.2'
group :production do
gem 'mysql2', '~> 0.3.16'
gem 'pg'
gem 'rails_12factor'
end
group :development do
gem 'sqlite3'
gem 'railroady'
#gem 'awesome_print'
#gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
gem "autotest-rails-pure"
gem "better_errors", '~> 0.9.0'
gem "binding_of_caller", '~> 0.7.2'
#gem 'debugger'#, '~> 1.6.1'
gem "rails-erd"
# YARD AND REDCLOTH are for generating yardocs
gem 'yard'
gem 'RedCloth'
end
group :test, :development do
gem 'capybara'#, "~> 2.4.1"#, :git => 'git://github.com/jnicklas/capybara.git'
gem 'launchy'
gem 'database_cleaner', "~> 1.2"
end
group :test do
gem 'factory_girl', "~> 3.3.0"
gem 'factory_girl_rails', "~> 3.3.0"
gem 'mocha', '~> 0.13.3', :require => false
gem 'rspec-rails-mocha'
gem 'rspec-rails', '2.99.0'#, '~> 3.0.2'
gem 'email_spec'
gem "faker"
end