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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85b602578c9ed4d94e2589a86b6ab0d9bd241357938577a8912d010b99600e97
4
- data.tar.gz: '0818b93f4b4e2b4d4cc608c0de6b9e46d1049ded27985aca5c49a51a57579889'
3
+ metadata.gz: edb50eaa20c7bcef993ec59941bb23b336430f5579432076a4982b795d0c7c33
4
+ data.tar.gz: 707d23af35bed9b77044d4dca216de063562d21023a573814ae4c4029daad828
5
5
  SHA512:
6
- metadata.gz: 5764028bed1da6251ac2b90d3e80ba53168846bfd90fc5e219b30bcceb34a8de0bda59ccaa30b60e89b0cc42db4612eb4a3e1bb1d5d517de6185c7153a9fcfa2
7
- data.tar.gz: cbe7687252f736d7d767695c816f6f9ed5291349603bb63f51f5776f1cad801b1158dfd084735502d0ebbc1e22760924c8cc0d254acce315bd4c911765f02db5
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.0)
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.77.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|spec|features)/}) }
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) }
@@ -1,3 +1,3 @@
1
1
  module Fishplate
2
- VERSION = "0.4.0".freeze
2
+ VERSION = "0.4.1".freeze
3
3
  end
data/lib/fishplate.rb CHANGED
@@ -40,7 +40,7 @@ module Fishplate
40
40
  end
41
41
 
42
42
  def setup!
43
- Dir.glob(A9n.root.join('config/initializers/*.rb')).each { |f| require f }
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.0
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-02 00:00:00.000000000 Z
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
@@ -1,12 +0,0 @@
1
- require:
2
- - rubocop-performance
3
-
4
- inherit_from:
5
- - https://raw.githubusercontent.com/RenoFi/rubocop/master/0.77.yml
6
-
7
- AllCops:
8
- TargetRubyVersion: 2.6
9
-
10
- Naming/FileName:
11
- Exclude:
12
- - 'lib/*.rb'
data/.ruby-gemset DELETED
@@ -1 +0,0 @@
1
- fishplate
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-2.6.5