fishplate 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +8 -8
- data/fishplate.gemspec +1 -1
- data/lib/fishplate/version.rb +1 -1
- data/lib/fishplate.rb +1 -1
- metadata +2 -5
- data/.rubocop.yml +0 -12
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edb50eaa20c7bcef993ec59941bb23b336430f5579432076a4982b795d0c7c33
|
4
|
+
data.tar.gz: 707d23af35bed9b77044d4dca216de063562d21023a573814ae4c4029daad828
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5eaa0dc0401ac87b07adb4796ae2bc200d3c76f364e19a1b702a4d01545a124b3aeba9c4a98cb1332fc63a36af70ae2aa1b3bcf72b27ee6e976b96d79a30c57
|
7
|
+
data.tar.gz: e31c55ebc356ab4df03a9d33e8be8bc9444804d99beb1bf08614027ccf851eb14749d605c680b089299193f9895cdce501feb01cacc6a4b72b7fd9fb4f1e317a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
fishplate (0.4.
|
4
|
+
fishplate (0.4.1)
|
5
5
|
a9n (~> 0.10)
|
6
6
|
activemodel
|
7
7
|
activerecord
|
@@ -13,12 +13,12 @@ GEM
|
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
15
|
a9n (0.10.0)
|
16
|
-
activemodel (6.0.1)
|
17
|
-
activesupport (= 6.0.1)
|
18
|
-
activerecord (6.0.1)
|
19
|
-
activemodel (= 6.0.1)
|
20
|
-
activesupport (= 6.0.1)
|
21
|
-
activesupport (6.0.1)
|
16
|
+
activemodel (6.0.2.1)
|
17
|
+
activesupport (= 6.0.2.1)
|
18
|
+
activerecord (6.0.2.1)
|
19
|
+
activemodel (= 6.0.2.1)
|
20
|
+
activesupport (= 6.0.2.1)
|
21
|
+
activesupport (6.0.2.1)
|
22
22
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
23
23
|
i18n (>= 0.7, < 2)
|
24
24
|
minitest (~> 5.1)
|
@@ -54,7 +54,7 @@ GEM
|
|
54
54
|
diff-lcs (>= 1.2.0, < 2.0)
|
55
55
|
rspec-support (~> 3.9.0)
|
56
56
|
rspec-support (3.9.0)
|
57
|
-
rubocop (0.
|
57
|
+
rubocop (0.78.0)
|
58
58
|
jaro_winkler (~> 1.5.1)
|
59
59
|
parallel (~> 1.10)
|
60
60
|
parser (>= 2.6)
|
data/fishplate.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.metadata['source_code_uri'] = 'https://github.com/RenoFi/fishplate'
|
17
17
|
|
18
18
|
spec.files = Dir.chdir(__dir__) do
|
19
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin
|
19
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
|
20
20
|
end
|
21
21
|
spec.bindir = 'exe'
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
data/lib/fishplate/version.rb
CHANGED
data/lib/fishplate.rb
CHANGED
@@ -40,7 +40,7 @@ module Fishplate
|
|
40
40
|
end
|
41
41
|
|
42
42
|
def setup!
|
43
|
-
|
43
|
+
A9n.root.join('config/initializers').glob('*.rb').each { |f| require f }
|
44
44
|
|
45
45
|
# Check active_record/railtie for default config
|
46
46
|
ActiveRecord::Base.logger = logger
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fishplate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Krzysztof Knapik
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-12-
|
11
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: a9n
|
@@ -187,9 +187,6 @@ extra_rdoc_files: []
|
|
187
187
|
files:
|
188
188
|
- ".gitignore"
|
189
189
|
- ".rspec"
|
190
|
-
- ".rubocop.yml"
|
191
|
-
- ".ruby-gemset"
|
192
|
-
- ".ruby-version"
|
193
190
|
- ".travis.yml"
|
194
191
|
- Gemfile
|
195
192
|
- Gemfile.lock
|
data/.rubocop.yml
DELETED
data/.ruby-gemset
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
fishplate
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
ruby-2.6.5
|