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 +4 -4
- data/README.md +0 -1
- data/lib/vindetta/standard/iso3779.rb +5 -1
- data/lib/vindetta/version.rb +1 -1
- metadata +1 -2
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4e37119c22f0e6496cc04926a4af7081b99d659adfdd3af19124e4c67d971b1
|
4
|
+
data.tar.gz: c143566be1708a5098421bd8c23d865a96f5054e9395631dc614dfa4c7beeb13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 ||=
|
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
|
data/lib/vindetta/version.rb
CHANGED
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.
|
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
|