railties 4.1.7.1 → 4.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4187e61bd85fb6de9c6feb467fec0c114c2b1857
4
- data.tar.gz: 99164189a09f180175ad1f1c5f5ea6c8a446d92b
3
+ metadata.gz: c87d4bc4b3dfc866e5a40c6d059797fcf7cf9f88
4
+ data.tar.gz: 2f6f13736aa7bc41b81b9111a6b5caf11023add9
5
5
  SHA512:
6
- metadata.gz: cd5d3e7ada6ed46a1b145148fe2f15de1ade5e5d0ddf91de8883445b2a2c0027806ac68496c26a4d41bb323159cb5272b0f8a9f8760aa8232623b89d774ddaba
7
- data.tar.gz: 08bdb711db95df969286f4141324ba366f335180813941b8f143cad004791cb1b2ff696bc9784c5ad538b2868afb836f176509c0a0de84cbaa8da5f994082c80
6
+ metadata.gz: 5e266b6a5171755b37bb9ee22e389d398f992d8376553a96acdf811763df6fbfe8951971659f0aaed6f2642d6157969dc1ad2ac4f9964ada0e3c03d37dbf6c21
7
+ data.tar.gz: fd6993327cae94bf4d1810ebd1152d0125942c0847ca14b1b6e9d356a6022e6ca5f720313cc11c1d2a04c022a9b04e9d5af71cf06daa57a6c6040102a12fed0c
@@ -1,3 +1,15 @@
1
+ * Specify dummy app's db migrate path in plugin's test_helper.rb.
2
+
3
+ Fixes #16877.
4
+
5
+ *Yukio Mizuta*
6
+
7
+ * Change the path of dummy app location in plugin's test_helper.rb for cases
8
+ you specify dummy_path option.
9
+
10
+ *Yukio Mizuta*
11
+
12
+
1
13
  ## Rails 4.1.6 (September 11, 2014) ##
2
14
 
3
15
  * Scaffold generator `_form` partial adds `class="field"` for password
@@ -7,8 +7,8 @@ module Rails
7
7
  module VERSION
8
8
  MAJOR = 4
9
9
  MINOR = 1
10
- TINY = 7
11
- PRE = "1"
10
+ TINY = 8
11
+ PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
14
14
  end
@@ -1,7 +1,13 @@
1
1
  # Configure Rails Environment
2
2
  ENV["RAILS_ENV"] = "test"
3
3
 
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
4
+ require File.expand_path("../../<%= options[:dummy_path] -%>/config/environment.rb", __FILE__)
5
+ <% unless options[:skip_active_record] -%>
6
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path("../../<%= options[:dummy_path] -%>/db/migrate", __FILE__)]
7
+ <% if options[:mountable] -%>
8
+ ActiveRecord::Migrator.migrations_paths << File.expand_path('../../db/migrate', __FILE__)
9
+ <% end -%>
10
+ <% end -%>
5
11
  require "rails/test_help"
6
12
 
7
13
  Rails.backtrace_cleaner.remove_silencers!
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: 4.1.7.1
4
+ version: 4.1.8
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: 2014-11-19 00:00:00.000000000 Z
11
+ date: 2014-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.7.1
19
+ version: 4.1.8
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 4.1.7.1
26
+ version: 4.1.8
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 4.1.7.1
33
+ version: 4.1.8
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 4.1.7.1
40
+ version: 4.1.8
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -78,14 +78,14 @@ dependencies:
78
78
  requirements:
79
79
  - - '='
80
80
  - !ruby/object:Gem::Version
81
- version: 4.1.7.1
81
+ version: 4.1.8
82
82
  type: :development
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: 4.1.7.1
88
+ version: 4.1.8
89
89
  description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
90
90
  email: david@loudthinking.com
91
91
  executables:
@@ -354,7 +354,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
354
354
  version: '0'
355
355
  requirements: []
356
356
  rubyforge_project:
357
- rubygems_version: 2.2.2
357
+ rubygems_version: 2.4.2
358
358
  signing_key:
359
359
  specification_version: 4
360
360
  summary: Tools for creating, working with, and running Rails applications.