yq 0.1.0 → 0.1.1

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19dc75e5f483ae1a839dd25c5709ac1e2ace615c
4
- data.tar.gz: de6afd26f5e16c93db90e12835c808e7ee2c466e
3
+ metadata.gz: 845c9c93cfd039439ebe95ff5a78c35de7e2a105
4
+ data.tar.gz: 6f90bc3c178b9a6ba941b1204ef908155b45dba1
5
5
  SHA512:
6
- metadata.gz: e4cede22d2c30f2aa9abe105270da7cb271929fd54d63e6b470b0345d927d345b205c8d640a656585c1e622734045b134029c84b56c8747d2ec3f26fc4b52aaa
7
- data.tar.gz: b4f4c255edf8118bd025610295127870dd129b713aa3d3fa3fdae1f746a4848a7e29fbda5a93d8896587ea59507847826d233d35d113862be2ea3a270800e20b
6
+ metadata.gz: dd385c1dfd908e5496cab3748c450bc46dd90d2c7e1a1c7da40de28a8658ff38120bc141ac04fbee7b367fbf89899b88b089994ce5657091842d725b4ae01c55
7
+ data.tar.gz: 0e6eab0698fd851e6b461aca496f4303bbd50e657febd930bfa57a6d8a6d3daee10ce1d973335169bcd8b851ff0adfff3865ef5a5b0647d7e88a082b32ef0c59
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.1.0
5
+ - ruby-head
6
+ # uncomment this line if your project needs to run something other than `rake`:
7
+ script: bundle exec rspec --require spec_helper --color --format documentation spec
data/Gemfile CHANGED
@@ -7,4 +7,5 @@ group :development, :test do
7
7
  gem 'guard'
8
8
  gem 'guard-rspec'
9
9
  gem 'climate_control'
10
+ gem 'coveralls', require: false
10
11
  end
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Yq
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/yq.svg)](http://badge.fury.io/rb/yq)
4
+ [![Build Status](https://travis-ci.org/jim80net/yq.svg?branch=master)](https://travis-ci.org/jim80net/yq)
5
+ [![Coverage Status](https://coveralls.io/repos/jim80net/yq/badge.svg?branch=master&service=github)](https://coveralls.io/github/jim80net/yq?branch=master)
6
+
3
7
  Use `yq` to parse YAML documents using [jq](https://stedolan.github.io/jq/). This gem is a simple wrapper around the executable. `jq` should be available in your path to use this gem.
4
8
 
5
9
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module Yq
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -1,5 +1,8 @@
1
1
  $:.unshift(File.expand_path("../lib", File.dirname(__FILE__)))
2
2
 
3
+ require 'coveralls'
4
+ Coveralls.wear!
5
+
3
6
  require 'logger'
4
7
  require 'pry'
5
8
  require 'yq'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jim Park
@@ -77,6 +77,7 @@ extensions: []
77
77
  extra_rdoc_files: []
78
78
  files:
79
79
  - ".gitignore"
80
+ - ".travis.yml"
80
81
  - Gemfile
81
82
  - Guardfile
82
83
  - LICENSE