vindetta 0.26.0 → 0.27.0

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: d17115ba1622676f7ec5f5754946f226cbda385ec41b0bb76c269d07b9d9657b
4
- data.tar.gz: a639b9184e39f2a630fb6535c65f2c4c0ae36a1f8555c98712d7e5688d555954
3
+ metadata.gz: f4e37119c22f0e6496cc04926a4af7081b99d659adfdd3af19124e4c67d971b1
4
+ data.tar.gz: c143566be1708a5098421bd8c23d865a96f5054e9395631dc614dfa4c7beeb13
5
5
  SHA512:
6
- metadata.gz: bbd07e6cfdc8b0c7eeb0ba7923231289b1fc73be6866ecb3a7cb792bf5fa1d0bd2b7c8e4c145f9cf12270e211aa8e92d4bdb2e0072221204bcadefe1ac8a7b8d
7
- data.tar.gz: 52fce861df144063ad9d52c3d57c6aa45c38c4abe1c6953b258cad252aa02e1d63809c643591b54d7243a3236acee71ee57cb9b415fbe4648adee26eb78abe5e
6
+ metadata.gz: 14a32d08d88ee931d630c09bc91f5e23757221e32eb9f39090d70585de73c7c035872fdd37359663289b7a8188c35f96fd4ea160979e063c172c16046cdd6b33
7
+ data.tar.gz: 39c9f70db0a3bd038bff94a8ac38b4f669fac02b364a4d757de249d5542a7b7a84711f31667e234e503f7ac6adeeab024aaac66ec105cc648adb1dfb1d2ffe82
data/README.md CHANGED
@@ -1,6 +1,5 @@
1
1
  # Vindetta
2
2
  [![Gem version](http://img.shields.io/gem/v/vindetta.svg)](http://rubygems.org/gems/vindetta)
3
- [![Build Status](https://travis-ci.org/kyledecot/vindetta.svg?branch=master)](https://travis-ci.org/kyledecot/vindetta)
4
3
  [![Code Climate](https://codeclimate.com/github/kyledecot/vindetta/badges/gpa.svg)](https://codeclimate.com/github/kyledecot/vindetta)
5
4
 
6
5
  ## Installation
@@ -20,7 +20,11 @@ module Vindetta
20
20
  end
21
21
 
22
22
  def self.yml
23
- @yml ||= YAML.load_file("lib/vindetta/standard/iso3779.yml")
23
+ @yml ||= begin
24
+ File.open(File.expand_path("iso3779.yml", __dir__)) do |file|
25
+ YAML.load_file(file)
26
+ end
27
+ end
24
28
  end
25
29
 
26
30
  private_class_method :yml
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vindetta
4
- VERSION = "0.26.0"
4
+ VERSION = "0.27.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vindetta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Decot
@@ -149,7 +149,6 @@ files:
149
149
  - ".rubocop.yml"
150
150
  - ".ruby-gemset"
151
151
  - ".ruby-version"
152
- - ".travis.yml"
153
152
  - Gemfile
154
153
  - Guardfile
155
154
  - LICENSE.txt
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.1
5
- before_install: gem install bundler -v 1.16.1