rusty_json 1.0.1 → 1.1.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
  SHA1:
3
- metadata.gz: 2fe6de200028a4b1a596227c6ae8e4a78c51dda9
4
- data.tar.gz: ba00bb917821e7c6bd969bcbb26bf3b3b11fd002
3
+ metadata.gz: 2144aa6c5054069d1f941651e994d43a5b464df5
4
+ data.tar.gz: 38e1c86e62c3483d5b1728ff7c6dd25e3cce4939
5
5
  SHA512:
6
- metadata.gz: 9f0fa73570af7e1e32b32a5161f478fb31de340e41bdf808c57e30aa5ca509492a4caf98f128213ffa0fffb539f03bec08efe25b6e6de76a759ea236413f6e0f
7
- data.tar.gz: 52d08eedca7d9d100431d1e15340bcfc9511fe4e8812729dc9df7805777b5c9079df1ff413e32cfa404be7573adc0cf0ebd36168066f0ed3a74724392d5d9f83
6
+ metadata.gz: 1d2bef7ba8b83355d15061b97e9f93c0d0561dd325d5ba54963491f68295ef06bf91679bff9772f12f30070e5cd9bdc81db1386e232c4f472042af401a44f573
7
+ data.tar.gz: d11cf157e574365a92a01acb1fc3d723e4aeef9cab59b3f70510868e079ccab544c1d4364de096cb6ef22e903578ee5b45fc2151563f6a69acc5af52a9f5d62f
data/.travis.yml CHANGED
@@ -7,4 +7,7 @@ rvm:
7
7
  matrix:
8
8
  allow_failures:
9
9
  - rvm: ruby-head
10
- before_install: gem install bundler -v 1.10.6
10
+ before_install: gem install bundler -v 1.10.6
11
+ addons:
12
+ code_climate:
13
+ repo_token: 34d0d282f871aa2247e5b461141fcec4ef02fcf0a952476f33216dec59091827
data/README.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # RustyJson
2
2
 
3
+ [![Quality](https://img.shields.io/codeclimate/github/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://codeclimate.com/github/ChrisMacNaughton/rusty_json)
4
+ [![Coverage](https://img.shields.io/codeclimate/coverage/github/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://codeclimate.com/github/ChrisMacNaughton/rusty_json)
5
+ [![Build](https://img.shields.io/travis-ci/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://travis-ci.org/ChrisMacNaughton/rusty_json)
6
+ [![Dependencies](https://img.shields.io/gemnasium/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://gemnasium.com/ChrisMacNaughton/rusty_json)
7
+ [![Docs](https://inch-ci.org/github/ChrisMacNaughton/rusty_json.svg?branch=master)](http://inch-ci.org/github/ChrisMacNaughton/rusty_json/branch/master)
8
+ [![Issues](https://img.shields.io/github/issues/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://github.com/ChrisMacNaughton/rusty_json/issues)
9
+ [![Downloads](https://img.shields.io/gem/dtv/rusty_json.svg?style=flat-square)](https://rubygems.org/gems/rusty_json)
10
+ [![Tags](https://img.shields.io/github/tag/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://github.com/ChrisMacNaughton/rusty_json/tags)
11
+ [![Releases](https://img.shields.io/github/release/ChrisMacNaughton/rusty_json.svg?style=flat-square)](https://github.com/ChrisMacNaughton/rusty_json/releases)
12
+ [![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](https://opensource.org/licenses/MIT)
13
+ [![Version](https://img.shields.io/gem/v/rusty_json.svg?style=flat-square)](https://rubygems.org/gems/rusty_json)
14
+
3
15
  RustyJson is a parser for JSON that takes in a JSON string and outputs [Rust](https://www.rust-lang.org/) structs to use with [rustc_serialize](http://doc.rust-lang.org/rustc-serialize/rustc_serialize/index.html) to parse JSON.
4
16
 
5
17
  ## Installation
@@ -1,6 +1,5 @@
1
1
  require 'json'
2
2
  require 'set'
3
- require 'pry'
4
3
 
5
4
  module RustyJson
6
5
  class Parser
@@ -1,3 +1,3 @@
1
1
  module RustyJson
2
- VERSION = "1.0.1"
2
+ VERSION = "1.1.0"
3
3
  end
data/rusty_json.gemspec CHANGED
@@ -22,5 +22,6 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake", "~> 10.0"
23
23
  spec.add_development_dependency "rspec"
24
24
  spec.add_development_dependency "pry"
25
+ spec.add_development_dependency 'codeclimate-test-reporter'
25
26
  spec.add_dependency "json"
26
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rusty_json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris MacNaughton
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: codeclimate-test-reporter
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: json
71
85
  requirement: !ruby/object:Gem::Requirement