Skip to content

Commit 8ee96e5

Browse files
committed
Upgrade to Rails 3.2.15
1 parent e09800d commit 8ee96e5

File tree

3 files changed

+53
-52
lines changed

3 files changed

+53
-52
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
bundler_stubs/
1717

1818
# Ignore other unneeded files.
19+
database.yml
1920
doc/
2021
*.swp
2122
*~

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
gem 'rails', '3.2.14'
3+
gem 'rails', '3.2.15'
44
gem 'bootstrap-sass', '2.1'
55
gem 'bcrypt-ruby', '3.0.1'
66
gem 'faker', '1.0.1'

Gemfile.lock

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actionmailer (3.2.14)
5-
actionpack (= 3.2.14)
4+
actionmailer (3.2.15)
5+
actionpack (= 3.2.15)
66
mail (~> 2.5.4)
7-
actionpack (3.2.14)
8-
activemodel (= 3.2.14)
9-
activesupport (= 3.2.14)
7+
actionpack (3.2.15)
8+
activemodel (= 3.2.15)
9+
activesupport (= 3.2.15)
1010
builder (~> 3.0.0)
1111
erubis (~> 2.7.0)
1212
journey (~> 1.0.4)
1313
rack (~> 1.4.5)
1414
rack-cache (~> 1.2)
1515
rack-test (~> 0.6.1)
1616
sprockets (~> 2.2.1)
17-
activemodel (3.2.14)
18-
activesupport (= 3.2.14)
17+
activemodel (3.2.15)
18+
activesupport (= 3.2.15)
1919
builder (~> 3.0.0)
20-
activerecord (3.2.14)
21-
activemodel (= 3.2.14)
22-
activesupport (= 3.2.14)
20+
activerecord (3.2.15)
21+
activemodel (= 3.2.15)
22+
activesupport (= 3.2.15)
2323
arel (~> 3.0.2)
2424
tzinfo (~> 0.3.29)
25-
activeresource (3.2.14)
26-
activemodel (= 3.2.14)
27-
activesupport (= 3.2.14)
28-
activesupport (3.2.14)
25+
activeresource (3.2.15)
26+
activemodel (= 3.2.15)
27+
activesupport (= 3.2.15)
28+
activesupport (3.2.15)
2929
i18n (~> 0.6, >= 0.6.4)
3030
multi_json (~> 1.0)
3131
arel (3.0.2)
@@ -41,6 +41,8 @@ GEM
4141
rack-test (>= 0.5.4)
4242
selenium-webdriver (~> 2.0)
4343
xpath (~> 0.1.4)
44+
celluloid (0.15.2)
45+
timers (~> 1.1.0)
4446
childprocess (0.3.6)
4547
ffi (~> 1.0, >= 1.0.6)
4648
coderay (1.0.9)
@@ -51,11 +53,11 @@ GEM
5153
coffee-script-source
5254
execjs
5355
coffee-script-source (1.6.3)
54-
cucumber (1.3.5)
56+
cucumber (1.3.8)
5557
builder (>= 2.1.2)
5658
diff-lcs (>= 1.1.3)
57-
gherkin (~> 2.12.0)
58-
multi_json (~> 1.7.5)
59+
gherkin (~> 2.12.1)
60+
multi_json (>= 1.7.5, < 2.0)
5961
multi_test (>= 0.0.2)
6062
cucumber-rails (1.2.1)
6163
capybara (>= 1.1.2)
@@ -64,8 +66,7 @@ GEM
6466
database_cleaner (0.7.0)
6567
diff-lcs (1.1.3)
6668
erubis (2.7.0)
67-
execjs (1.4.0)
68-
multi_json (~> 1.0)
69+
execjs (2.0.2)
6970
factory_girl (4.1.0)
7071
activesupport (>= 3.0.0)
7172
factory_girl_rails (4.1.0)
@@ -75,14 +76,14 @@ GEM
7576
i18n (~> 0.4)
7677
ffi (1.9.0)
7778
formatador (0.2.4)
78-
gherkin (2.12.0)
79+
gherkin (2.12.2)
7980
multi_json (~> 1.3)
80-
guard (1.8.1)
81+
guard (2.1.1)
8182
formatador (>= 0.2.4)
82-
listen (>= 1.0.0)
83-
lumberjack (>= 1.0.2)
84-
pry (>= 0.9.10)
85-
thor (>= 0.14.6)
83+
listen (~> 2.1)
84+
lumberjack (~> 1.0)
85+
pry (>= 0.9.12)
86+
thor (>= 0.18.1)
8687
guard-rspec (1.2.1)
8788
guard (>= 1.1)
8889
guard-spork (1.2.0)
@@ -91,24 +92,24 @@ GEM
9192
spork (>= 0.8.4)
9293
sys-proctable
9394
hike (1.2.3)
94-
i18n (0.6.4)
95+
i18n (0.6.5)
9596
journey (1.0.4)
9697
jquery-rails (2.0.2)
9798
railties (>= 3.2.0, < 5.0)
9899
thor (~> 0.14)
99-
json (1.8.0)
100-
listen (1.2.2)
100+
json (1.8.1)
101+
listen (2.1.1)
102+
celluloid (>= 0.15.2)
101103
rb-fsevent (>= 0.9.3)
102104
rb-inotify (>= 0.9)
103-
rb-kqueue (>= 0.2)
104105
lumberjack (1.0.4)
105106
mail (2.5.4)
106107
mime-types (~> 1.16)
107108
treetop (~> 1.4.8)
108109
method_source (0.8.2)
109-
mime-types (1.23)
110+
mime-types (1.25)
110111
mini_portile (0.5.1)
111-
multi_json (1.7.7)
112+
multi_json (1.8.2)
112113
multi_test (0.0.2)
113114
nokogiri (1.6.0)
114115
mini_portile (~> 0.5.0)
@@ -125,26 +126,24 @@ GEM
125126
rack
126127
rack-test (0.6.2)
127128
rack (>= 1.0)
128-
rails (3.2.14)
129-
actionmailer (= 3.2.14)
130-
actionpack (= 3.2.14)
131-
activerecord (= 3.2.14)
132-
activeresource (= 3.2.14)
133-
activesupport (= 3.2.14)
129+
rails (3.2.15)
130+
actionmailer (= 3.2.15)
131+
actionpack (= 3.2.15)
132+
activerecord (= 3.2.15)
133+
activeresource (= 3.2.15)
134+
activesupport (= 3.2.15)
134135
bundler (~> 1.0)
135-
railties (= 3.2.14)
136-
railties (3.2.14)
137-
actionpack (= 3.2.14)
138-
activesupport (= 3.2.14)
136+
railties (= 3.2.15)
137+
railties (3.2.15)
138+
actionpack (= 3.2.15)
139+
activesupport (= 3.2.15)
139140
rack-ssl (~> 1.3.2)
140141
rake (>= 0.8.7)
141142
rdoc (~> 3.4)
142143
thor (>= 0.14.6, < 2.0)
143144
rake (10.1.0)
144145
rb-fsevent (0.9.3)
145-
rb-inotify (0.9.0)
146-
ffi (>= 0.5.0)
147-
rb-kqueue (0.2.0)
146+
rb-inotify (0.9.2)
148147
ffi (>= 0.5.0)
149148
rdoc (3.12.2)
150149
json (~> 1.4)
@@ -161,16 +160,16 @@ GEM
161160
activesupport (>= 3.0)
162161
railties (>= 3.0)
163162
rspec (~> 2.11.0)
164-
rubyzip (0.9.9)
165-
sass (3.2.10)
163+
rubyzip (1.0.0)
164+
sass (3.2.12)
166165
sass-rails (3.2.5)
167166
railties (~> 3.2.0)
168167
sass (>= 3.1.10)
169168
tilt (~> 1.3)
170-
selenium-webdriver (2.33.0)
169+
selenium-webdriver (2.37.0)
171170
childprocess (>= 0.2.5)
172171
multi_json (~> 1.0)
173-
rubyzip
172+
rubyzip (~> 1.0.0)
174173
websocket (~> 1.0.4)
175174
slop (3.4.6)
176175
spork (0.9.2)
@@ -183,10 +182,11 @@ GEM
183182
sys-proctable (0.9.3)
184183
thor (0.18.1)
185184
tilt (1.4.1)
186-
treetop (1.4.14)
185+
timers (1.1.0)
186+
treetop (1.4.15)
187187
polyglot
188188
polyglot (>= 0.3.1)
189-
tzinfo (0.3.37)
189+
tzinfo (0.3.38)
190190
uglifier (1.2.3)
191191
execjs (>= 0.3.0)
192192
multi_json (>= 1.0.2)
@@ -213,7 +213,7 @@ DEPENDENCIES
213213
guard-spork (= 1.2.0)
214214
jquery-rails (= 2.0.2)
215215
pg (= 0.12.2)
216-
rails (= 3.2.14)
216+
rails (= 3.2.15)
217217
rspec-rails (= 2.11.0)
218218
sass-rails (= 3.2.5)
219219
spork (= 0.9.2)

0 commit comments

Comments
 (0)