test-unit-rails 5.0.3 → 5.0.4

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: fc9b4c4b00b22218694a671a9f5eea25fee92c05
4
- data.tar.gz: 5d927d150b7df50d9ee4cab22d29b7533f2a6386
3
+ metadata.gz: ae5c469ed6a949552e97ce989aa356987efa5ce3
4
+ data.tar.gz: e37737b7cd24a3c96de9d0fb79b62a3eb6cd5c9d
5
5
  SHA512:
6
- metadata.gz: aaeb98ebc8d468d10d4e3b59953439ce117aeace1266202f0294315afddfbfb9c9001192fd1313986b0c9842e4eb122da08b3500c4949e6d07525d94998519ca
7
- data.tar.gz: c1fd29d51f9f993b64659e05812ba888e101769a8456525701b52b59ddc14be69ff7412f60951bd4ec14f4dd16ba3d13a8120c17e153909e77827283d6fb8851
6
+ metadata.gz: 1d2de64b17da24ccbcc4048eb738475bb18b846e642fb18a57b159b07b0c5162d936b9d3089addc2bf8747731ef011d8ad274363c07ac9cc88b9a3fe532b08dc
7
+ data.tar.gz: e31b666637e96b97461fe9538675dfd33b2163646edc49f631bc752ce22176d970c12317a9b24b16898bcbdabfa06046f03a29a8b4d365906e96d2ba0550af4b
@@ -1,5 +1,16 @@
1
1
  # News
2
2
 
3
+ ## 5.0.4 - 2016-12-20 {#version-5-0-4}
4
+
5
+ ### Fixes
6
+
7
+ * Supported Rails 4 again.
8
+ [GitHub#11][Patch by Akira Matsuda]
9
+
10
+ ### Thanks
11
+
12
+ * Akira Matsuda
13
+
3
14
  ## 5.0.3 - 2016-12-19 {#version-5-0-3}
4
15
 
5
16
  ### Improvements
@@ -42,7 +42,7 @@ if defined?(ActiveRecord::Migration)
42
42
  end
43
43
 
44
44
  class ActiveSupport::TestCase
45
- self.file_fixture_path = "#{Rails.root}/test/fixtures/files"
45
+ self.file_fixture_path = "#{Rails.root}/test/fixtures/files" if respond_to?(:file_fixture_path=)
46
46
  end
47
47
 
48
48
  if defined?(ActiveRecord::Base)
@@ -17,7 +17,7 @@
17
17
  module Test
18
18
  module Unit
19
19
  module Rails
20
- VERSION = "5.0.3"
20
+ VERSION = "5.0.4"
21
21
  end
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-unit-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.3
4
+ version: 5.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-19 00:00:00.000000000 Z
11
+ date: 2016-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -217,6 +217,6 @@ summary: test-unit-rails is a Rails adapter for test-unit 3. You can use full te
217
217
  integration with test-unit-rails.
218
218
  test_files:
219
219
  - test/test_action_controller.rb
220
- - test/test_helper.rb
221
220
  - test/run-test.rb
222
221
  - test/test_action_dispatch.rb
222
+ - test/test_helper.rb