json_checker 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTRkN2Y3Y2ZhNTgwM2IxOTM3N2ZiMjMyMWRhZDJkNmRlY2FlYjJiZQ==
4
+ YzEzODZhNmFiZjA0ZGJhY2IyZTA5YzI3ZTkyMDMwMGZkNjI2Yjg2NA==
5
5
  data.tar.gz: !binary |-
6
- ZjUwZmYxYzQyMjIzZDk2ZjhmYmZhMzcwNGJhMDk5MGYyZjNlYTQ4Mg==
6
+ OTZjNDRjYTNkYmE2YTg1MTFkY2ZmM2FhNDM2NDM0ODRmYmYyM2ZjOQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NjI2MGM2ZTVjYjhhYmFiZWZiNjA2NzVlNTk1ODQ4YWQ4YTkxN2RiOWRiZmRj
10
- MDBjMjcwNTY0MDg1ZmM0NDM2ZTg2YWI3MjJmNjgzNzIzYzZmNTIyYjM5NDY2
11
- ZjM2MmEyZDIwYjcwNDlkYjIyNGEyYTk4NzkyNWNhNWMxZDU3ODY=
9
+ MGZmZTFlOTFlZjUyMDlmNzFiYjBkZGYwYzE1MDhjZWRhMWU1MzBkNTM3ZDVj
10
+ NzNlZGM1MWZjYzZjMzQyZmIwOTE4MDgxYzVhYzA3NWQyODQ2YzY4NTliM2I5
11
+ OWU1NzdhY2Q2Zjc1NTM3N2U4NmM2ZmFjODRhNGI5YTNkOWIxMGQ=
12
12
  data.tar.gz: !binary |-
13
- YThiYjhjMWU4MmM5MjJmMDM1ZGNmOTc4OTIyYjE0ZTA5NmRmZTM5Yzk3NDQ0
14
- NGYyOWE3MDhmZmI4ZjYzNGY1YmJjYTRjZmIxNjg5MmI3NWU1ZTdkY2QwY2Q0
15
- ZmMxNTEzNTc4NmFhZGY4OWNkNWFjODYzZjM5ZmQwMzM2YTAxYTE=
13
+ NDdjYjliNzJmYmZmZTY5NTQ1YTE3ODhmY2QyNGY3MDViZjRhZGRjMDRjN2Vl
14
+ N2JhNzRmZWM0YzU3MmUxYWM1MDFiMjA4ZDlkMmJkYTRjNDJlYzVkNWQzM2Fl
15
+ MTRiZjQyZTdiOWNlYTQzNjczN2I2ZmMzMWZlMmVmMTU2ZjFmMTY=
data/bin/json_checker CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "bundler/setup"
4
3
  require "json_checker"
5
4
 
6
5
  checker = JsonChecker::Checker.new
data/json_checker.gemspec CHANGED
@@ -22,7 +22,8 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "bundler", "~> 1.14"
23
23
  spec.add_development_dependency "rake", "~> 10.0"
24
24
  spec.add_development_dependency "rspec", "~> 3.0"
25
- spec.add_development_dependency "diffy", "3.1.0"
26
25
  spec.add_development_dependency "coveralls"
27
26
 
27
+ spec.add_dependency "diffy", "3.1.0"
28
+
28
29
  end
@@ -1,4 +1,3 @@
1
-
2
1
  require "json_checker/json_fetcher"
3
2
 
4
3
  module JsonChecker
@@ -1,4 +1,3 @@
1
- require "rubygems"
2
1
  require 'json'
3
2
  require 'net/http'
4
3
 
@@ -1,4 +1,3 @@
1
- require "rubygems"
2
1
  require 'json'
3
2
  require 'json_checker/json_to_check'
4
3
  require 'json_checker/json_fetcher'
@@ -1,3 +1,3 @@
1
1
  module JsonChecker
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json_checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cícero Duarte
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-14 00:00:00.000000000 Z
11
+ date: 2017-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -53,33 +53,33 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
55
  - !ruby/object:Gem::Dependency
56
- name: diffy
56
+ name: coveralls
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '='
59
+ - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.1.0
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '='
66
+ - - ! '>='
67
67
  - !ruby/object:Gem::Version
68
- version: 3.1.0
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: coveralls
70
+ name: diffy
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
75
+ version: 3.1.0
76
+ type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - '='
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: 3.1.0
83
83
  description:
84
84
  email:
85
85
  - ciceroduarte1@gmail.com