forked from drhenner/ror_ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
105 lines (84 loc) · 2.8 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
97
98
99
100
101
102
103
104
105
source 'http://rubygems.org'
ruby "2.1.5"
## Bundle rails:
gem 'rails', '4.2.0.rc3'
gem 'uglifier', '>= 1.3.0'
gem 'sass-rails', '~> 4.0.0'
gem 'actionpack-page_caching'
gem "activemerchant", '~> 1.44'#, :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.4.3'#, "~> 3.3.0"
gem 'authlogic', github: 'drhenner/authlogic', branch: 'rails4.2'
#gem 'scrypt', '~> 2.0.0'
#gem 'scrypt', '~> 1.2.0'
gem "asset_sync", '~> 1.1.0'
gem 'awesome_nested_set', '~> 3.0.1'
gem 'aws-sdk', '~> 1.59.0'
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', '~> 2.0.1'
gem 'dynamic_form'
gem 'jbuilder'
gem "friendly_id", '~> 5.1.0.beta.1'#, :git => "[email protected]:FriendlyId/friendly_id.git", :branch => 'rails4'
gem "jquery-rails", '~> 4.0.0'
gem 'jquery-ui-rails'#, '~> 5.0.2'
gem 'json', '~> 1.8.1'
#gem "nifty-generators", :git => 'git://github.com/drhenner/nifty-generators.git'
gem 'nokogiri', '~> 1.6.5'
gem 'paperclip', '~> 4.2'
gem 'prawn', '~> 0.12.0'
gem "rails3-generators", "~> 1.0.0"
#git: "https://github.com/neocoin/rails3-generators.git"
gem "rails_config"
gem 'rmagick', '= 2.13.3', :require => 'RMagick'
gem 'rake', '~> 10.1'
# gem 'resque', require: 'resque/server'
gem "sprockets", "2.11.0"
#gem 'state_machine', '~> 1.2.0'
gem 'aasm', '~> 4.0.3'
#gem 'sunspot_solr', '~> 2.0.0'
#gem 'sunspot_rails', '~> 2.0.0'
gem 'will_paginate', '~> 3.0.7'
gem 'zurb-foundation', '~> 4.3.2'
group :production do
gem 'mysql2', '~> 0.3.17'
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", '~> 2.0.0'
gem "binding_of_caller", '~> 0.7.2'
gem 'byebug'
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 'byebug'
#gem 'factory_girl', "~> 3.3.0"
#gem 'factory_girl_rails', "~> 3.3.0"
gem 'factory_girl', "~> 4.5.0"
gem 'factory_girl_rails', "~> 4.5.0"
gem 'mocha', '~> 0.13.3', :require => false
gem 'rspec-rails-mocha'
gem 'rspec-rails', '~> 3.1.0'#'2.99.0'#, '~> 3.0.2'
gem 'email_spec'
gem "faker"
end