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 +4 -4
- data/.travis.yml +0 -4
- data/CHANGELOG.md +4 -0
- data/lib/with_model/version.rb +1 -1
- data/with_model.gemspec +1 -1
- metadata +3 -5
- data/bin/rake +0 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73d3473a8847088dfb50b96f339306c6b853b78d1be908aee3dfbae594df8c5a
|
4
|
+
data.tar.gz: c3c48245f7ec06041f9c99cac9e72e0e490760451bd936a36bf05f274cc75eef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d2dbbf33bb33961595848a2974166610a1afc557a8cbf3e460c53a0793278f2132114fbbb5ac396866ec2e736de9067542daf52aaa4283293e1886c65a3b585
|
7
|
+
data.tar.gz: 154318219e3adfa3469e60041c1f8559c3912481f278cc01c117856374f1ac5aee1d32b711d2fc5eb44e3946fc374ce48ce8f3d80c750109f0db25c71a2308cd
|
data/.travis.yml
CHANGED
@@ -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"
|
data/CHANGELOG.md
CHANGED
data/lib/with_model/version.rb
CHANGED
data/with_model.gemspec
CHANGED
@@ -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(^
|
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.
|
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-
|
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')
|