yahoo_parse_api 0.9.1 → 1.0.0

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: 0d9dc1d86df8947c4bb2fa03580409f5de9edf8b
4
- data.tar.gz: 8a455e3458b5d1197427c24a7db8816f50f3cf5d
3
+ metadata.gz: 0c06ec0dbe3eb07426b8f6ef9539fd6f6a0050e0
4
+ data.tar.gz: ebd1b23c851188e923f12f288ee0e586393c11d2
5
5
  SHA512:
6
- metadata.gz: 9aed23502efb5e0b65cfd166aba037a0322aaffc2422e2811b2817cf93ac7b46bcfb9236774ba665e712ebfc010a5e5309def55cc2b5a6222e5f38494a8b2116
7
- data.tar.gz: 74d55475d0b193fca90ce4bbf128e40f46d3c07a0b55627c32231fc58f7a3b7de3730ed3c2158a6bf908a10f8ebd81c4cde2b071aa285ccbe35866a89d09a0d5
6
+ metadata.gz: 36aec1f55f1349b5608e23d1f33051f8bb71e1bd2bea004b3f950847e9a64086045c9efff67e4e05bcde87ff1029294c5bad48495714383b0bd295b9df60cb01
7
+ data.tar.gz: dc437f2c283d67ba9b4120ebddfe8a89b3da4d941ed7471f2bd456b17561aa23810d8c3f9b657930053afcf32f70688d992098d26dbdb08c9c84fddeca412207
data/.travis.yml ADDED
@@ -0,0 +1,14 @@
1
+ before_install:
2
+ - gem install bundler
3
+ env:
4
+ global:
5
+ - secure: "NwRuPWGAW2wkG30emX5j+UpG5juk8xMiIt6PjMw3cwv2X2cTXNXZYmJqfirEhbgz2en24SPjb4O7VNN029KKripJfQTNVhIvlv8eoMzGA75F8n09L8js1uviSEIVEyobInFYNXGnxHC8/5Fm7591hNoIa6cAzAScsnaBG8YX2tw="
6
+ branches:
7
+ only:
8
+ - 'master'
9
+ rvm:
10
+ - 1.9.3
11
+ - 2.0.0
12
+ before_script:
13
+ - "cp spec/application.sample.yml spec/application.yml"
14
+ script: "bundle exec rspec"
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # Yahoo Parse Api Client
2
+ [![Build Status](https://travis-ci.org/kyohei8/yahoo_parse_api.png)](https://travis-ci.org/kyohei8/yahoo_parse_api)
3
+ [![Gem Version](https://badge.fury.io/rb/yahoo_parse_api.png)](http://badge.fury.io/rb/yahoo_parse_api)
2
4
 
3
5
  This is Yahoo Parse Api Client for ruby.
4
6
 
@@ -1,3 +1,3 @@
1
1
  module YahooParseApi
2
- VERSION = '0.9.1'
2
+ VERSION = '1.0.0'
3
3
  end
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  require 'yahoo_parse_api/version'
2
3
  require 'httparty'
3
4
 
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  require 'spec_helper'
2
3
 
3
4
  describe 'YahooParseApi Spec' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yahoo_parse_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - kyohei8
@@ -88,6 +88,7 @@ extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
90
  - .gitignore
91
+ - .travis.yml
91
92
  - Gemfile
92
93
  - LICENSE.txt
93
94
  - README.md