bionic 0.0.2.rc4 → 0.0.2.rc5

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: 3d74df870448bb330f5b02a2f35a0dbb49c19d99d6e479097b6100d808ef55b5
4
- data.tar.gz: 0b6c51b5875a1dc3c8cc5b90aa6ba2375aff73263d12cfefc106d70b699ae537
3
+ metadata.gz: f76e1526960f53c5a127c1fe25a84fc88c438c1319d64ae35738d9f9a47508a0
4
+ data.tar.gz: 001e8b1d61f4d5a82a4355de30ab8c029cfa0e724c7abacbc486ee6d67c800ec
5
5
  SHA512:
6
- metadata.gz: 1fc64146b9a5551607797a059341ab5de9e33e33dd8a4bba297aabe98b88f0aad55ffe46a6389b7a6777bece9cfaadcc7e55fb400402d2aae45dd4c32aff5c77
7
- data.tar.gz: 6f075322b3bdb51941c33599b4ac6cc03e15ad4fc97c81db816febc3aa2141bd41aeb91b41a5043828657ed32dee36a6cedd71a6471fd6c84f1284629761a290
6
+ metadata.gz: b1745c7eba2e0741b95a11c06e6270c8ec648a3e9106f51a9a6397887eb587ea1d2575be5e45710224ce4323943832f3946f1fbc6e72fd52df4cb5c838cbe3e8
7
+ data.tar.gz: c870bcda7a4fe4f119858e3b2e0ab8274c7401705bea935a2101deb75a86373da70407e14d6b16e769ca6db456688157c90ec1b9c092837741c55452a6a2c43d
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bionic (0.0.2.rc3)
4
+ bionic (0.0.2.rc4)
5
5
  activerecord (~> 5.1)
6
6
  dotenv (~> 2.2)
7
7
  i18n (~> 0.7)
Binary file
@@ -26,7 +26,7 @@ module Bionic
26
26
  file = Pathname.new(config_files[:database]) if config_files[:database]
27
27
  raise "Could not load database configuration. No such file #{config_files[:database]}" unless file&.exist?
28
28
 
29
- YAML::Load(ERB.new(file.read).result) || {}
29
+ YAML.load(ERB.new(file.read).result) || {} # rubocop:disable Security/YAMLLoad
30
30
  end
31
31
  end
32
32
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bionic
4
- VERSION = '0.0.2.rc4'
4
+ VERSION = '0.0.2.rc5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bionic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.rc4
4
+ version: 0.0.2.rc5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taras Shpachenko
@@ -169,6 +169,7 @@ files:
169
169
  - Rakefile
170
170
  - bin/console
171
171
  - bin/setup
172
+ - bionic-0.0.2.rc4.gem
172
173
  - bionic.gemspec
173
174
  - exe/bionic
174
175
  - lib/bionic.rb