dothash 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -3
- data/Gemfile +1 -0
- data/README.md +1 -0
- data/lib/dothash.rb +2 -2
- data/lib/dothash/hash.rb +2 -2
- data/lib/dothash/version.rb +3 -3
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3cd5b0d264dc129dbad72720fc4af28f9fda354a
|
4
|
+
data.tar.gz: 7439e7655043b4b8b16172bd060a237037dbacb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 418637885e3274cbfa591d3b6cf93f7493218a958e755e9b165f0efa225bb85852679c4067dcb09d2cf496256253cfb7c08eb51f02ed71c1bc20a58d5bca72b8
|
7
|
+
data.tar.gz: aab5848680f04f0ca4b09e1de9233fa9db44e80d0f26ce50e2f9104a4caf13268cc8ed4b1fed9a53d7cb6bb0359e2e17ab7b2544596c055ba5e52d9a6ee73562
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,16 @@
|
|
1
|
-
|
1
|
+
### 2.0.2 (2017.04.07)
|
2
|
+
|
3
|
+
* fix travis integration
|
4
|
+
* update license
|
5
|
+
|
6
|
+
### 2.0.1 (2016.10.05)
|
2
7
|
|
3
8
|
* remove unused code
|
4
9
|
|
5
|
-
|
10
|
+
### 2.0.0 (2016.10.05)
|
6
11
|
|
7
12
|
* add conversion from opposite direction
|
8
13
|
|
9
|
-
|
14
|
+
### 1.0.0 (2016.10.04)
|
10
15
|
|
11
16
|
* publication of the code
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/dothash.svg)](http://badge.fury.io/rb/dothash)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/skopciewski/dothash/badges/gpa.svg)](https://codeclimate.com/github/skopciewski/dothash)
|
5
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/skopciewski/dothash.svg)](https://gemnasium.com/github.com/skopciewski/dothash)
|
5
6
|
|
6
7
|
Hash to dot notation.
|
7
8
|
|
data/lib/dothash.rb
CHANGED
data/lib/dothash/hash.rb
CHANGED
data/lib/dothash/version.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (C) 2016 Szymon Kopciewski
|
3
|
+
# Copyright (C) 2016, 2017 Szymon Kopciewski
|
4
4
|
#
|
5
5
|
# This file is part of Dothash.
|
6
6
|
#
|
@@ -18,5 +18,5 @@
|
|
18
18
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
19
|
|
20
20
|
module Dothash
|
21
|
-
VERSION = "2.0.
|
21
|
+
VERSION = "2.0.2"
|
22
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dothash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Szymon Kopciewski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: codeclimate-test-reporter
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|