File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ group :heroku do
2929end
3030
3131gem "activerecord" , "~> 4.0"
32+ # need to work around bug in 4.0.1 https://github.com/rails/arel/pull/216
33+ gem 'arel' , git : 'git://github.com/rails/arel.git' , branch : '4-0-stable'
3234gem "bcrypt-ruby" , "~> 3.1.2"
35+ gem "delayed_job" , "~> 4.0"
3336gem "delayed_job_active_record" , "~> 4.0"
3437gem "feedbag" , "~> 0.9.2"
3538gem "feedzirra"
Original file line number Diff line number Diff line change 1+ GIT
2+ remote: git://github.com/rails/arel.git
3+ revision: 454a25f18c95cdfba5520a6fc5bdb6d476e20a85
4+ branch: 4-0-stable
5+ specs:
6+ arel (4.0.1.20131022201058 )
7+
18GIT
29 remote: git://github.com/swanson/loofah.git
310 revision: 825d715e6f1281501882d886cf34e82aebabb356
2330 multi_json (~> 1.3 )
2431 thread_safe (~> 0.1 )
2532 tzinfo (~> 0.3.37 )
26- arel (4.0.1 )
2733 atomic (1.1.14 )
2834 backports (3.3.5 )
2935 bcrypt-ruby (3.1.2 )
@@ -160,8 +166,10 @@ PLATFORMS
160166
161167DEPENDENCIES
162168 activerecord (~> 4.0 )
169+ arel !
163170 bcrypt-ruby (~> 3.1.2 )
164171 coveralls (~> 0.7 )
172+ delayed_job (~> 4.0 )
165173 delayed_job_active_record (~> 4.0 )
166174 excon (~> 0.31.0 )
167175 faker (~> 1.2 )
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ require "rubygems"
55require "net/http"
66require 'active_record'
77require 'delayed_job'
8+ require 'delayed_job_active_record'
89
910require "sinatra/activerecord/rake"
1011
You can’t perform that action at this time.
0 commit comments