yournavigation 0.0.1 → 0.0.2

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: 236bd5efa4036adb40d8dd23fc9ed220af669b29
4
- data.tar.gz: e07b1721d5b5f30223615ea50f8e354a0c609503
3
+ metadata.gz: 5ee7f4c89c49978d24b1b9e8e9284fb9fc9d5f9a
4
+ data.tar.gz: 358eec6257fe07d5315439a132e026aba85d715e
5
5
  SHA512:
6
- metadata.gz: 4a29735e9312941af0732079efa2df959f9629549a48fead9a2b42c98028da86230f596395225d8917bd6a383e0a3dbca733b2da29cec3755ef9f16e1f04502e
7
- data.tar.gz: 4a7f5f73f661940bf06a8fe175351c847e2d9b539293b9b9c6aa2b3f296dd9be8a91bfaebbf5ac04d3a881586c163ebe2fa199a38181be8401b74bc414f04e15
6
+ metadata.gz: fe05262047f182e1c69616f8d016eb7db6f3897799feb714487964ff389dd974ba3f29097e3e1ea2e18197691ad5e48659359c2f6e9760b3ce5d8967bb914b78
7
+ data.tar.gz: 8ac211c04ba3158e9e147649d7c65b4386cbe34e44b0aeb025a58537a08f6e29b1241b63a08628cc604b655ba1bd45e78c9f858de030f06a08b46008087dd558
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
+ gem 'codeclimate-test-reporter', group: :test, require: nil
4
+
3
5
  # Specify your gem's dependencies in yournavigation.gemspec
4
6
  gemspec
data/README.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # Yournavigation
2
+ [![Gem Version](https://badge.fury.io/rb/yournavigation.svg)](http://badge.fury.io/rb/yournavigation)
3
+ [![Dependency Status](https://gemnasium.com/r-ideas/yournavigation.svg)](https://gemnasium.com/r-ideas/yournavigation)
4
+ [![Build Status](https://travis-ci.org/r-ideas/yournavigation.svg)](https://travis-ci.org/r-ideas/yournavigation)
5
+ [![Code Climate](https://codeclimate.com/github/r-ideas/yournavigation/badges/gpa.svg)](https://codeclimate.com/github/r-ideas/yournavigation)
6
+ [![Test Coverage](https://codeclimate.com/github/r-ideas/yournavigation/badges/coverage.svg)](https://codeclimate.com/github/r-ideas/yournavigation)
2
7
 
3
8
  API wrapper for http://yournavigation.org
4
9
 
data/Rakefile CHANGED
@@ -3,6 +3,7 @@ require "rake/testtask"
3
3
 
4
4
  Rake::TestTask.new(:test) do |t|
5
5
  t.libs << "test"
6
+ t.pattern = "**/*_test.rb"
6
7
  end
7
8
 
8
9
  task :default => :test
@@ -1,3 +1,3 @@
1
1
  module Yournavigation
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
@@ -1,4 +1,8 @@
1
+ require 'codeclimate-test-reporter'
2
+ CodeClimate::TestReporter.start
3
+
1
4
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
5
+
2
6
  require 'yournavigation'
3
7
 
4
8
  require 'minitest/autorun'
@@ -10,6 +14,7 @@ require 'vcr'
10
14
  VCR.configure do |c|
11
15
  c.cassette_library_dir = 'test/vcr_cassettes'
12
16
  c.hook_into :webmock
17
+ c.ignore_hosts 'codeclimate.com'
13
18
  end
14
19
 
15
20
  Turn.config.format = :dot
@@ -18,8 +18,8 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.add_dependency 'httparty', '~> 0.13.1'
22
- spec.add_dependency 'hashie', '~> 3.3.1'
21
+ spec.add_dependency 'httparty'
22
+ spec.add_dependency 'hashie'
23
23
  spec.add_dependency 'activesupport'
24
24
 
25
25
  spec.add_development_dependency 'bundler', '~> 1.7'
metadata CHANGED
@@ -1,43 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yournavigation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Greshny
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-27 00:00:00.000000000 Z
11
+ date: 2014-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.13.1
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 0.13.1
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: hashie
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 3.3.1
33
+ version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 3.3.1
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: activesupport
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -167,9 +167,9 @@ files:
167
167
  - lib/yournavigation/client.rb
168
168
  - lib/yournavigation/gosmore_item.rb
169
169
  - lib/yournavigation/version.rb
170
+ - test/lib/yournavigation/client_test.rb
171
+ - test/lib/yournavigation_test.rb
170
172
  - test/minitest_helper.rb
171
- - test/test_yournavigation.rb
172
- - test/test_yournavigation_client.rb
173
173
  - test/vcr_cassettes/base.yml
174
174
  - yournavigation.gemspec
175
175
  homepage: http://www.github.com/r-ideas/yournavigation
@@ -197,7 +197,7 @@ signing_key:
197
197
  specification_version: 4
198
198
  summary: API wrapper for http://yournavigation.org/
199
199
  test_files:
200
+ - test/lib/yournavigation/client_test.rb
201
+ - test/lib/yournavigation_test.rb
200
202
  - test/minitest_helper.rb
201
- - test/test_yournavigation.rb
202
- - test/test_yournavigation_client.rb
203
203
  - test/vcr_cassettes/base.yml