with_model 2.1.1 → 2.1.2

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
  SHA256:
3
- metadata.gz: 8a9994ddf84f8fe654f6670173ea2cf6d8a739c1033bc17ca9765001fc0f8f50
4
- data.tar.gz: f432e1faa7d071b4219dadf9f64a4d7202d67d2fcb0c95b01157848be12252d5
3
+ metadata.gz: 73d3473a8847088dfb50b96f339306c6b853b78d1be908aee3dfbae594df8c5a
4
+ data.tar.gz: c3c48245f7ec06041f9c99cac9e72e0e490760451bd936a36bf05f274cc75eef
5
5
  SHA512:
6
- metadata.gz: 7654d570583cea72d142bf0d70416d539704198f7ca9d447fb52b1917e016f05622a4d7f53a03ca6c3002d61ce3a2301ddae4ee6982312ff0c3e5d2b57fa4f7c
7
- data.tar.gz: b90401f8f508ab719cddd294dd5bcc104c09e075df83f55e65e4884cfc0202ed38a1240a8098dc2443fbeba3c6957d392ec17bf717e121d82922e6bdefc128ec
6
+ metadata.gz: 1d2dbbf33bb33961595848a2974166610a1afc557a8cbf3e460c53a0793278f2132114fbbb5ac396866ec2e736de9067542daf52aaa4283293e1886c65a3b585
7
+ data.tar.gz: 154318219e3adfa3469e60041c1f8559c3912481f278cc01c117856374f1ac5aee1d32b711d2fc5eb44e3946fc374ce48ce8f3d80c750109f0db25c71a2308cd
@@ -13,8 +13,6 @@ install:
13
13
  env:
14
14
  - ACTIVE_RECORD_BRANCH="master"
15
15
  - ACTIVE_RECORD_BRANCH="5-2-stable"
16
- - ACTIVE_RECORD_BRANCH="5-1-stable"
17
- - ACTIVE_RECORD_BRANCH="5-0-stable"
18
16
  - ACTIVE_RECORD_VERSION="~> 5.2.0"
19
17
  - ACTIVE_RECORD_VERSION="~> 5.1.0"
20
18
  - ACTIVE_RECORD_VERSION="~> 5.0.0"
@@ -24,8 +22,6 @@ matrix:
24
22
  allow_failures:
25
23
  - env: ACTIVE_RECORD_BRANCH="master"
26
24
  - env: ACTIVE_RECORD_BRANCH="5-2-stable"
27
- - env: ACTIVE_RECORD_BRANCH="5-1-stable"
28
- - env: ACTIVE_RECORD_BRANCH="5-0-stable"
29
25
  exclude:
30
26
  - rvm: 2.3.7
31
27
  env: ACTIVE_RECORD_BRANCH="master"
@@ -1,3 +1,7 @@
1
+ ### 2.2.2
2
+
3
+ - Don't clobber existing rake executable
4
+
1
5
  ### 2.1.1
2
6
 
3
7
  - Don't fail erroneously when running the after hook when the before hook failed
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WithModel
4
- VERSION = '2.1.1'
4
+ VERSION = '2.1.2'
5
5
  end
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
17
- spec.executables = spec.files.grep(%r(^bin/)) { |f| File.basename(f) }
17
+ spec.executables = spec.files.grep(%r(^exe/)) { |f| File.basename(f) }
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: with_model
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Case Commons, LLC
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2018-11-04 00:00:00.000000000 Z
13
+ date: 2018-11-06 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activerecord
@@ -107,8 +107,7 @@ email:
107
107
  - casecommons-dev@googlegroups.com
108
108
  - gems@nertzy.com
109
109
  - andrew@johnandrewmarshall.com
110
- executables:
111
- - rake
110
+ executables: []
112
111
  extensions: []
113
112
  extra_rdoc_files: []
114
113
  files:
@@ -122,7 +121,6 @@ files:
122
121
  - LICENSE
123
122
  - README.md
124
123
  - Rakefile
125
- - bin/rake
126
124
  - lib/with_model.rb
127
125
  - lib/with_model/constant_stubber.rb
128
126
  - lib/with_model/methods.rb
data/bin/rake DELETED
@@ -1,18 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- #
5
- # This file was generated by Bundler.
6
- #
7
- # The application 'rake' is installed as part of a gem, and
8
- # this file is here to facilitate running it.
9
- #
10
-
11
- require 'pathname'
12
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
13
- Pathname.new(__FILE__).realpath)
14
-
15
- require 'rubygems'
16
- require 'bundler/setup'
17
-
18
- load Gem.bin_path('rake', 'rake')