update_or_delete_or_create 4.1.6.0 → 4.1.7.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a626ab7ae1ff095b6a789eb39bee8423480681a
4
- data.tar.gz: 15444e79ddf8cbc435bfa43e109371d2d09c5379
3
+ metadata.gz: d3843aa807d24f7de9c3a3e7bb276276fa854b4b
4
+ data.tar.gz: c8994eb0e3ee815dd2b924d330385c0457171f24
5
5
  SHA512:
6
- metadata.gz: 172ea66b6aebb957ea54c46b7e9ff541a22bd0c4909ba24bee8ef079edc27f8c9399694e743b786f80c2108032bac14ae25ceccc3471c26eda99ecb2ee7582d4
7
- data.tar.gz: 877135236a841ef5f9259ce47469d3e3eee398c1dc836fe19b76fce76981289450ee1472a6db5305323289b3f06218b1ed5e190242251562ee660bbc61c1555a
6
+ metadata.gz: fb8a7328213f949fd39b9a2c4fb92fe6ad2376153d3e4b9cef77af247264cbfc371449a10f0af1439158e4c23f92f06f09f70cbce0cf07ed545864dabb134f40
7
+ data.tar.gz: f306f2e632b8b9e6d98db090d4dea782897b620fbae000a780b9206e9ac498986b04568c7ed1c4a19b6813083329dcc8696b5e7c833d5b26915935a56ab8210a
@@ -1,3 +1,3 @@
1
1
  module UpdateOrCreate
2
- VERSION = "4.1.6.0"
2
+ VERSION = "4.1.7.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: update_or_delete_or_create
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.6.0
4
+ version: 4.1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jun'ya Shimoda(JironBach)
@@ -91,8 +91,6 @@ files:
91
91
  - lib/update_or_create/activerecord.rb
92
92
  - lib/update_or_create/railtie.rb
93
93
  - lib/update_or_create/version.rb
94
- - test/test_helper.rb
95
- - test/update_or_create_test.rb
96
94
  homepage: https://github.com/JironBach/update_or_create
97
95
  licenses:
98
96
  - MIT
@@ -118,6 +116,4 @@ rubygems_version: 2.2.2
118
116
  signing_key:
119
117
  specification_version: 4
120
118
  summary: Allow update_or_create to ActiveRecord.
121
- test_files:
122
- - test/test_helper.rb
123
- - test/update_or_create_test.rb
119
+ test_files: []
data/test/test_helper.rb DELETED
@@ -1,15 +0,0 @@
1
- # Configure Rails Environment
2
- ENV["RAILS_ENV"] = "test"
3
-
4
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
- require "rails/test_help"
6
-
7
- Rails.backtrace_cleaner.remove_silencers!
8
-
9
- # Load support files
10
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
-
12
- # Load fixtures from the engine
13
- if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
- ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- class UpdateOrCreateTest < ActiveSupport::TestCase
4
- test "truth" do
5
- assert_kind_of Module, UpdateOrCreate
6
- end
7
- end