railties 3.2.21 → 3.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/rails/test_help.rb +5 -1
- data/lib/rails/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11a38cbcb2e52271baf3208a88f0a14eb5ed50d2
|
|
4
|
+
data.tar.gz: ae3ac4c417f19fe85f761435cd05aafbddce4c9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 116127f9ecf8e0d3d3f408852c7f9b8e8fbc7b1e92563b42e33d40c7899b52c9a2fa474259e02846b66daea094b83d5bcd542016097f776209e18462a1aeb6ca
|
|
7
|
+
data.tar.gz: 3c7b40b43012275667a7eadbe0f61d9d6ec59147435778b65b4dc6aabde85fb05f6f886dba1acd2666174b6ec3b200b5e394fa2900a56161aa1c0a34651f9168
|
data/CHANGELOG.md
CHANGED
data/lib/rails/test_help.rb
CHANGED
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
# so fixtures aren't loaded into that environment
|
|
3
3
|
abort("Abort testing: Your Rails environment is running in production mode!") if Rails.env.production?
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
begin
|
|
6
|
+
require 'test/unit'
|
|
7
|
+
rescue LoadError => e
|
|
8
|
+
raise LoadError, "Please add test-unit gem to your Gemfile: `gem 'test-unit', '~> 3.0'` (#{e.message})", e.backtrace
|
|
9
|
+
end
|
|
6
10
|
require 'active_support/test_case'
|
|
7
11
|
require 'action_controller/test_case'
|
|
8
12
|
require 'action_dispatch/testing/integration'
|
data/lib/rails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railties
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -78,28 +78,28 @@ dependencies:
|
|
|
78
78
|
requirements:
|
|
79
79
|
- - '='
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 3.2.
|
|
81
|
+
version: 3.2.22
|
|
82
82
|
type: :runtime
|
|
83
83
|
prerelease: false
|
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
85
85
|
requirements:
|
|
86
86
|
- - '='
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 3.2.
|
|
88
|
+
version: 3.2.22
|
|
89
89
|
- !ruby/object:Gem::Dependency
|
|
90
90
|
name: actionpack
|
|
91
91
|
requirement: !ruby/object:Gem::Requirement
|
|
92
92
|
requirements:
|
|
93
93
|
- - '='
|
|
94
94
|
- !ruby/object:Gem::Version
|
|
95
|
-
version: 3.2.
|
|
95
|
+
version: 3.2.22
|
|
96
96
|
type: :runtime
|
|
97
97
|
prerelease: false
|
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
100
|
- - '='
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version: 3.2.
|
|
102
|
+
version: 3.2.22
|
|
103
103
|
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
|
104
104
|
email: david@loudthinking.com
|
|
105
105
|
executables:
|
|
@@ -621,7 +621,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
621
621
|
version: '0'
|
|
622
622
|
requirements: []
|
|
623
623
|
rubyforge_project:
|
|
624
|
-
rubygems_version: 2.4.
|
|
624
|
+
rubygems_version: 2.4.5
|
|
625
625
|
signing_key:
|
|
626
626
|
specification_version: 4
|
|
627
627
|
summary: Tools for creating, working with, and running Rails applications.
|