Skip to content

Commit 1b0fd60

Browse files
author
Austin Schneider
committed
upgrade pg, httparty, squeel, jquery-rails, webmock and resque_spec
1 parent e8d747a commit 1b0fd60

26 files changed

+402
-32
lines changed

Gemfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
source 'http://rubygems.org'
22

33
gem 'rails', '3.2.14'
4-
gem 'pg', '0.11.0'
4+
gem 'pg', '0.16.0'
55
gem 'haml-rails', '0.3.5'
6-
gem 'jquery-rails', '1.0.16'
7-
gem 'httparty', '0.8.1'
8-
gem 'squeel', '0.9.3'
6+
gem 'httparty', '0.11.0'
7+
gem 'squeel', '1.1.1'
98
gem 'resque', '1.24.1'
109
gem 'resque-scheduler', '2.0.1'
1110
gem 'kaminari', '0.14.1'
@@ -14,6 +13,7 @@ gem 'kaminari', '0.14.1'
1413
# Gems used only for assets and not required
1514
# in production environments by default.
1615
group :assets do
16+
gem 'jquery-rails', '~> 3.0.4'
1717
gem 'sass-rails', '~> 3.2.6'
1818
gem 'coffee-rails', '~> 3.2.2'
1919
gem 'uglifier', '>= 1.0.3'
@@ -24,11 +24,11 @@ group :test do
2424
gem 'cucumber-rails', '~> 1.2.0', :require => false
2525
gem 'database_cleaner', '~> 0.6.7'
2626
gem 'accept_values_for', '~> 0.4.3'
27-
gem 'webmock', '~> 1.7.5', require: false
27+
gem 'webmock', '~> 1.13.0'
2828
gem 'artifice', '~> 0.6'
2929
gem 'timecop', '~> 0.3.5'
3030
gem 'launchy', '~> 2.0.5'
31-
gem 'resque_spec', '~> 0.7.0'
31+
gem 'resque_spec', '~> 0.14.2'
3232
gem 'factory_girl_rails', '~> 1.3.0'
3333
gem 'faker', '~> 1.0.1'
3434
end

Gemfile.lock

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ GEM
8181
haml (~> 3.1)
8282
railties (>= 3.1, < 4.1)
8383
hike (1.2.3)
84-
httparty (0.8.1)
85-
multi_json
86-
multi_xml
84+
httparty (0.11.0)
85+
multi_json (~> 1.0)
86+
multi_xml (>= 0.5.2)
8787
i18n (0.6.5)
8888
journey (1.0.4)
89-
jquery-rails (1.0.16)
90-
railties (~> 3.0)
91-
thor (~> 0.14)
89+
jquery-rails (3.0.4)
90+
railties (>= 3.0, < 5.0)
91+
thor (>= 0.14, < 2.0)
9292
json (1.8.0)
9393
kaminari (0.14.1)
9494
actionpack (>= 3.0.0)
@@ -106,9 +106,9 @@ GEM
106106
multi_xml (0.5.5)
107107
nokogiri (1.6.0)
108108
mini_portile (~> 0.5.0)
109-
pg (0.11.0)
110-
polyamorous (0.5.0)
111-
activerecord (~> 3.0)
109+
pg (0.16.0)
110+
polyamorous (0.6.4)
111+
activerecord (>= 3.0)
112112
polyglot (0.3.3)
113113
rack (1.4.5)
114114
rack-cache (1.2)
@@ -150,9 +150,11 @@ GEM
150150
redis (>= 2.0.1)
151151
resque (>= 1.20.0)
152152
rufus-scheduler
153-
resque_spec (0.7.0)
154-
resque (>= 1.15.0)
155-
rspec (>= 2.5.0)
153+
resque_spec (0.14.2)
154+
resque (>= 1.19.0)
155+
rspec-core (>= 2.5.0)
156+
rspec-expectations (>= 2.5.0)
157+
rspec-mocks (>= 2.5.0)
156158
rspec (2.14.1)
157159
rspec-core (~> 2.14.0)
158160
rspec-expectations (~> 2.14.0)
@@ -185,10 +187,10 @@ GEM
185187
multi_json (~> 1.0)
186188
rack (~> 1.0)
187189
tilt (~> 1.1, != 1.3.0)
188-
squeel (0.9.3)
189-
activerecord (~> 3.0)
190-
activesupport (~> 3.0)
191-
polyamorous (~> 0.5.0)
190+
squeel (1.1.1)
191+
activerecord (>= 3.0)
192+
activesupport (>= 3.0)
193+
polyamorous (~> 0.6.0)
192194
thor (0.18.1)
193195
tilt (1.4.1)
194196
timecop (0.3.5)
@@ -201,9 +203,9 @@ GEM
201203
multi_json (~> 1.0, >= 1.0.2)
202204
vegas (0.1.11)
203205
rack (>= 1.0.0)
204-
webmock (1.7.10)
205-
addressable (~> 2.2, > 2.2.5)
206-
crack (>= 0.1.7)
206+
webmock (1.13.0)
207+
addressable (>= 2.2.7)
208+
crack (>= 0.3.2)
207209
xpath (2.0.0)
208210
nokogiri (~> 1.3)
209211

@@ -219,18 +221,18 @@ DEPENDENCIES
219221
factory_girl_rails (~> 1.3.0)
220222
faker (~> 1.0.1)
221223
haml-rails (= 0.3.5)
222-
httparty (= 0.8.1)
223-
jquery-rails (= 1.0.16)
224+
httparty (= 0.11.0)
225+
jquery-rails (~> 3.0.4)
224226
kaminari (= 0.14.1)
225227
launchy (~> 2.0.5)
226-
pg (= 0.11.0)
228+
pg (= 0.16.0)
227229
rails (= 3.2.14)
228230
resque (= 1.24.1)
229231
resque-scheduler (= 2.0.1)
230-
resque_spec (~> 0.7.0)
232+
resque_spec (~> 0.14.2)
231233
rspec-rails (~> 2.14)
232234
sass-rails (~> 3.2.6)
233-
squeel (= 0.9.3)
235+
squeel (= 1.1.1)
234236
timecop (~> 0.3.5)
235237
uglifier (>= 1.0.3)
236-
webmock (~> 1.7.5)
238+
webmock (~> 1.13.0)

bin/autospec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'autospec' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rspec-core', 'autospec')

bin/erubis

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'erubis' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('erubis', 'erubis')

bin/haml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'haml' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('haml', 'haml')

bin/html2haml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'html2haml' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('haml', 'html2haml')

bin/htmldiff

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'htmldiff' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('diff-lcs', 'htmldiff')

bin/httparty

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'httparty' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('httparty', 'httparty')

bin/launchy

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'launchy' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('launchy', 'launchy')

bin/ldiff

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'ldiff' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('diff-lcs', 'ldiff')

bin/nokogiri

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'nokogiri' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('nokogiri', 'nokogiri')

bin/rackup

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rackup' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rack', 'rackup')

bin/rails

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rails' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('railties', 'rails')

bin/rake

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rake' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rake', 'rake')

bin/rdoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'rdoc' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('rdoc', 'rdoc')

bin/resque

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'resque' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('resque', 'resque')

bin/resque-web

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env ruby
2+
#
3+
# This file was generated by Bundler.
4+
#
5+
# The application 'resque-web' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'pathname'
10+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11+
Pathname.new(__FILE__).realpath)
12+
13+
require 'rubygems'
14+
require 'bundler/setup'
15+
16+
load Gem.bin_path('resque', 'resque-web')

0 commit comments

Comments
 (0)