update_or_delete_or_create 4.1.6.0 → 4.1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/update_or_create/version.rb +1 -1
- metadata +2 -6
- data/test/test_helper.rb +0 -15
- data/test/update_or_create_test.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3843aa807d24f7de9c3a3e7bb276276fa854b4b
|
4
|
+
data.tar.gz: c8994eb0e3ee815dd2b924d330385c0457171f24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb8a7328213f949fd39b9a2c4fb92fe6ad2376153d3e4b9cef77af247264cbfc371449a10f0af1439158e4c23f92f06f09f70cbce0cf07ed545864dabb134f40
|
7
|
+
data.tar.gz: f306f2e632b8b9e6d98db090d4dea782897b620fbae000a780b9206e9ac498986b04568c7ed1c4a19b6813083329dcc8696b5e7c833d5b26915935a56ab8210a
|
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.
|
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
|