Skip to content

Commit 7c499c6

Browse files
committed
update to rails 4.2.5
1 parent 11dcd1f commit 7c499c6

File tree

6 files changed

+74
-64
lines changed

6 files changed

+74
-64
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@ db/*.sqlite3
2121
/log/*
2222
/tmp/*
2323

24+
# add /config/database.yml if it contains passwords
25+
# /config/database.yml
26+
2427
# various artifacts
2528
**.war
2629
*.rbc
2730
*.sassc
2831
.redcar/
2932
.sass-cache
3033
/config/config.yml
31-
/config/database.yml
3234
/coverage.data
3335
/coverage/
3436
/db/*.javadb/
@@ -77,3 +79,6 @@ pickle-email-*.html
7779
# Environment files that may contain sensitive data
7880
.env
7981
.powenv
82+
83+
# tilde files are usually backup files from a text editor
84+
*~

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
ruby '2.2.3'
3-
gem 'rails', '4.2.4'
3+
gem 'rails', '4.2.5'
44
gem 'sqlite3'
55
gem 'sass-rails', '~> 5.0'
66
gem 'uglifier', '>= 1.3.0'

Gemfile.lock

Lines changed: 59 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actionmailer (4.2.4)
5-
actionpack (= 4.2.4)
6-
actionview (= 4.2.4)
7-
activejob (= 4.2.4)
4+
actionmailer (4.2.5)
5+
actionpack (= 4.2.5)
6+
actionview (= 4.2.5)
7+
activejob (= 4.2.5)
88
mail (~> 2.5, >= 2.5.4)
99
rails-dom-testing (~> 1.0, >= 1.0.5)
10-
actionpack (4.2.4)
11-
actionview (= 4.2.4)
12-
activesupport (= 4.2.4)
10+
actionpack (4.2.5)
11+
actionview (= 4.2.5)
12+
activesupport (= 4.2.5)
1313
rack (~> 1.6)
1414
rack-test (~> 0.6.2)
1515
rails-dom-testing (~> 1.0, >= 1.0.5)
1616
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17-
actionview (4.2.4)
18-
activesupport (= 4.2.4)
17+
actionview (4.2.5)
18+
activesupport (= 4.2.5)
1919
builder (~> 3.1)
2020
erubis (~> 2.7.0)
2121
rails-dom-testing (~> 1.0, >= 1.0.5)
2222
rails-html-sanitizer (~> 1.0, >= 1.0.2)
23-
activejob (4.2.4)
24-
activesupport (= 4.2.4)
23+
activejob (4.2.5)
24+
activesupport (= 4.2.5)
2525
globalid (>= 0.3.0)
26-
activemodel (4.2.4)
27-
activesupport (= 4.2.4)
26+
activemodel (4.2.5)
27+
activesupport (= 4.2.5)
2828
builder (~> 3.1)
29-
activerecord (4.2.4)
30-
activemodel (= 4.2.4)
31-
activesupport (= 4.2.4)
29+
activerecord (4.2.5)
30+
activemodel (= 4.2.5)
31+
activesupport (= 4.2.5)
3232
arel (~> 6.0)
33-
activesupport (4.2.4)
33+
activesupport (4.2.5)
3434
i18n (~> 0.7)
3535
json (~> 1.7, >= 1.7.7)
3636
minitest (~> 5.1)
3737
thread_safe (~> 0.3, >= 0.3.4)
3838
tzinfo (~> 1.1)
3939
addressable (2.3.8)
4040
arel (6.0.3)
41-
autoprefixer-rails (6.0.0)
41+
autoprefixer-rails (6.1.0.1)
4242
execjs
4343
json
4444
better_errors (2.1.1)
@@ -51,14 +51,14 @@ GEM
5151
autoprefixer-rails (>= 5.0.0.1)
5252
sass (>= 3.3.0)
5353
builder (3.2.2)
54-
byebug (6.0.2)
54+
byebug (8.2.0)
5555
capybara (2.5.0)
5656
mime-types (>= 1.16)
5757
nokogiri (>= 1.3.3)
5858
rack (>= 1.0.0)
5959
rack-test (>= 0.5.4)
6060
xpath (~> 2.0)
61-
childprocess (0.5.6)
61+
childprocess (0.5.8)
6262
ffi (~> 1.0, >= 1.0.11)
6363
coderay (1.1.0)
6464
coffee-rails (4.1.0)
@@ -67,8 +67,8 @@ GEM
6767
coffee-script (2.4.1)
6868
coffee-script-source
6969
execjs
70-
coffee-script-source (1.9.1.1)
71-
database_cleaner (1.5.0)
70+
coffee-script-source (1.10.0)
71+
database_cleaner (1.5.1)
7272
debug_inspector (0.0.2)
7373
diff-lcs (1.2.5)
7474
erubis (2.7.0)
@@ -85,7 +85,7 @@ GEM
8585
activesupport (>= 4.1.0)
8686
high_voltage (2.4.0)
8787
i18n (0.7.0)
88-
jbuilder (2.3.1)
88+
jbuilder (2.3.2)
8989
activesupport (>= 3.0.0, < 5)
9090
multi_json (~> 1.2)
9191
jquery-rails (4.0.5)
@@ -99,27 +99,27 @@ GEM
9999
nokogiri (>= 1.5.9)
100100
mail (2.6.3)
101101
mime-types (>= 1.16, < 3)
102-
mime-types (2.6.1)
102+
mime-types (2.6.2)
103103
mini_portile (0.6.2)
104-
minitest (5.8.0)
104+
minitest (5.8.2)
105105
multi_json (1.11.2)
106-
nokogiri (1.6.6.2)
106+
nokogiri (1.6.6.3)
107107
mini_portile (~> 0.6.0)
108108
quiet_assets (1.1.0)
109109
railties (>= 3.1, < 5.0)
110110
rack (1.6.4)
111111
rack-test (0.6.3)
112112
rack (>= 1.0)
113-
rails (4.2.4)
114-
actionmailer (= 4.2.4)
115-
actionpack (= 4.2.4)
116-
actionview (= 4.2.4)
117-
activejob (= 4.2.4)
118-
activemodel (= 4.2.4)
119-
activerecord (= 4.2.4)
120-
activesupport (= 4.2.4)
113+
rails (4.2.5)
114+
actionmailer (= 4.2.5)
115+
actionpack (= 4.2.5)
116+
actionview (= 4.2.5)
117+
activejob (= 4.2.5)
118+
activemodel (= 4.2.5)
119+
activerecord (= 4.2.5)
120+
activesupport (= 4.2.5)
121121
bundler (>= 1.3.0, < 2.0)
122-
railties (= 4.2.4)
122+
railties (= 4.2.5)
123123
sprockets-rails
124124
rails-deprecated_sanitizer (1.0.3)
125125
activesupport (>= 4.2.0.alpha)
@@ -129,53 +129,53 @@ GEM
129129
rails-deprecated_sanitizer (>= 1.0.1)
130130
rails-html-sanitizer (1.0.2)
131131
loofah (~> 2.0)
132-
rails_layout (1.0.26)
133-
railties (4.2.4)
134-
actionpack (= 4.2.4)
135-
activesupport (= 4.2.4)
132+
rails_layout (1.0.28)
133+
railties (4.2.5)
134+
actionpack (= 4.2.5)
135+
activesupport (= 4.2.5)
136136
rake (>= 0.8.7)
137137
thor (>= 0.18.1, < 2.0)
138138
rake (10.4.2)
139-
rspec-core (3.3.2)
140-
rspec-support (~> 3.3.0)
141-
rspec-expectations (3.3.1)
139+
rspec-core (3.4.0)
140+
rspec-support (~> 3.4.0)
141+
rspec-expectations (3.4.0)
142142
diff-lcs (>= 1.2.0, < 2.0)
143-
rspec-support (~> 3.3.0)
144-
rspec-mocks (3.3.2)
143+
rspec-support (~> 3.4.0)
144+
rspec-mocks (3.4.0)
145145
diff-lcs (>= 1.2.0, < 2.0)
146-
rspec-support (~> 3.3.0)
147-
rspec-rails (3.3.3)
146+
rspec-support (~> 3.4.0)
147+
rspec-rails (3.4.0)
148148
actionpack (>= 3.0, < 4.3)
149149
activesupport (>= 3.0, < 4.3)
150150
railties (>= 3.0, < 4.3)
151-
rspec-core (~> 3.3.0)
152-
rspec-expectations (~> 3.3.0)
153-
rspec-mocks (~> 3.3.0)
154-
rspec-support (~> 3.3.0)
155-
rspec-support (3.3.0)
151+
rspec-core (~> 3.4.0)
152+
rspec-expectations (~> 3.4.0)
153+
rspec-mocks (~> 3.4.0)
154+
rspec-support (~> 3.4.0)
155+
rspec-support (3.4.0)
156156
rubyzip (1.1.7)
157-
sass (3.4.18)
157+
sass (3.4.19)
158158
sass-rails (5.0.4)
159159
railties (>= 4.0.0, < 5.0)
160160
sass (~> 3.1)
161161
sprockets (>= 2.8, < 4.0)
162162
sprockets-rails (>= 2.0, < 4.0)
163163
tilt (>= 1.1, < 3)
164-
selenium-webdriver (2.47.1)
164+
selenium-webdriver (2.48.1)
165165
childprocess (~> 0.5)
166166
multi_json (~> 1.0)
167167
rubyzip (~> 1.0)
168168
websocket (~> 1.0)
169-
spring (1.3.6)
169+
spring (1.4.3)
170170
spring-commands-rspec (1.0.4)
171171
spring (>= 0.9.1)
172-
sprockets (3.3.4)
173-
rack (~> 1.0)
174-
sprockets-rails (2.3.2)
172+
sprockets (3.4.0)
173+
rack (> 1, < 3)
174+
sprockets-rails (2.3.3)
175175
actionpack (>= 3.0)
176176
activesupport (>= 3.0)
177177
sprockets (>= 2.8, < 4.0)
178-
sqlite3 (1.3.10)
178+
sqlite3 (1.3.11)
179179
thor (0.19.1)
180180
thread_safe (0.3.5)
181181
tilt (2.0.1)
@@ -212,7 +212,7 @@ DEPENDENCIES
212212
jquery-rails
213213
launchy
214214
quiet_assets
215-
rails (= 4.2.4)
215+
rails (= 4.2.5)
216216
rails_layout
217217
rspec-rails
218218
sass-rails (~> 5.0)

spec/rails_helper.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#
2323
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
2424

25-
# Checks for pending migrations before tests are run.
25+
# Checks for pending migration and applies them before tests are run.
2626
# If you are not using ActiveRecord, you can remove this line.
2727
ActiveRecord::Migration.maintain_test_schema!
2828

@@ -49,4 +49,9 @@
4949
# The different available types are documented in the features, such as in
5050
# https://relishapp.com/rspec/rspec-rails/docs
5151
config.infer_spec_type_from_file_location!
52+
53+
# Filter lines from Rails gems in backtraces.
54+
config.filter_rails_from_backtrace!
55+
# arbitrary gems may also be filtered via:
56+
# config.filter_gems_from_backtrace("gem name")
5257
end

spec/spec_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
5858
# Limits the available syntax to the non-monkey patched syntax that is
5959
# recommended. For more details, see:
60-
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
60+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
6161
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62-
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
62+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
6363
config.disable_monkey_patching!
6464
6565
# Many RSpec users commonly either run the entire suite or an individual

0 commit comments

Comments
 (0)