forked from ramisn/sole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
136 lines (109 loc) · 3.39 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
source 'http://rubygems.org'
$ruby_version = `ruby --version`.split[1].to_f
gem 'nokogiri', '1.5.5'
gem 'rails', '3.1.4'
gem 'mysql2', '0.3.11'
gem 'sprockets'
group :assets do
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
gem 'sass-rails', "3.1.4"
gem 'coffee-rails', "~> 3.1.1"
gem 'uglifier', ">= 1.0.3"
gem 'yui-compressor'
# gem 'therubyracer', '0.9.9'
end
gem 'jquery-rails', '1.0.19'
gem 'activemerchant', :require => 'active_merchant'
#gem 'aws-s3', :require => 'aws/s3' # load aws very early - otherwise interferes with Spree calculators
gem 'aws-sdk'
gem 'deface', '0.7.2'
#gem 'omniauth'
gem 'dynamic_form' # spree forms had used error_messages_on, and this is now housed in dynamic_form
gem 'composite_primary_keys' # for the stores_users table because it doesn't have an id column
gem 'fgraph' # for facebook graph api querying
gem 'koala' # for facebook graph api querying
gem 'sitemap_generator'
gem 'capistrano', '2.9.0'
gem 'capistrano-ext', '1.2.1'
gem 'daemons'
gem 'delayed_job_active_record'
gem 'newrelic_rpm'
gem 'json'
gem 'json_pure'
gem 'prawn', '1.0.0.rc1'
gem 'prawn-layout'
gem 'prawn-core'
gem 'prawn-security'
#gem 'multi_json', '~> 1.3'
# Always load spree gems last (other than dev and test gems)
gem 'highline', '1.6.8'
gem 'spree', '1.0.4'
gem 'spree_social', :git => "git://github.com/spree/spree_social.git", :branch => '1-0-stable'
gem 'spree_paypal_express', :git => "git://github.com/spree/spree_paypal_express.git", :branch => '1-0-stable'
gem 'spree_gateway', :git => 'git://github.com/spree/spree_gateway.git', :branch => "1-0-stable"
gem 'validates_timeliness'
gem 'exceptional'
gem 'sitemap_generator'
gem 'kaminari'
gem 'sunspot_rails'
# gem 'spree_sunspot_search', :git => '[email protected]:jbrien/spree_sunspot_search.git'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
group :production, :staging do
gem 'god', '~> 0.12.1'
gem 'thin'
end
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development do
gem 'ruby-prof'
gem 'sqlite3', '1.3.5'
gem 'taps', '0.3.23'
gem 'rvm-capistrano'
gem 'rails-dev-tweaks', '~> 0.6.1'
end
group :development, :test do
gem 'active_reload'
gem 'ya2yaml'
gem 'rspec-rails'
gem 'faker'
gem 'pry-rails'
#gem 'ruby-debug19'
# gem 'webrat'
#gem 'ruby-debug-base19', "0.11.24"
#gem 'ruby-debug19', "0.11.6"
gem 'sunspot_solr'
end
group :test do
gem 'rspec-rails'
# cucumber-rails in 1.2 gets rid of tableish, so features with that will need to be converted on upgrade.
gem 'cucumber-rails', "~> 1.1.0"
gem 'factory_girl', "~> 3.4"
gem 'factory_girl_rails', "~> 3.4"
gem 'autotest'
gem 'autotest-inotify'
gem 'database_cleaner'
gem 'pickle'
gem 'email_spec'
gem 'capybara', "~> 1.1.0"
gem 'capybara-mechanize', "~> 0.3.0.rc3"
gem 'launchy'
gem 'shoulda'
gem 'faker'
gem 'jasmine'
end
group :cucumber do
gem 'capybara', "~> 1.1.0"
gem 'capybara-mechanize', "~> 0.3.0.rc3"
gem 'database_cleaner'
gem 'cucumber-rails', "~> 1.1.0"
gem 'rspec-rails'
gem 'spork'
gem 'launchy' # So you can do Then show me the pag
gem 'jasmine'
gem 'database_cleaner'
end