allegro_api_client 0.0.3 → 0.0.4
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/apiclient.gemspec +1 -1
- data/lib/allegro_api_client.rb +1 -1
- data/rakefile.rb +6 -0
- data/test/test_git_repository_commit.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1349c57a3383110ca70aef4fd493572959b63c3f
|
|
4
|
+
data.tar.gz: 7270a32663152a223310a1fed85c087bb5256e45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65e502c1abe96656e30265671283503031bf985b9f48ef77196b25b673f5d5fdce47eede42f18bd0ffc953653dba8e6997a99d4e3a2d63df01be9bcb7c02820f
|
|
7
|
+
data.tar.gz: 458f95d6ecc915d5a0ebc67f25538969627ffff9925dee2fad172ebe8d3cc3818f11254a9e721ad4686ba5b86dc63b97f545fcdf7f12723d6d7e0ed8fbdfd75c
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/apiclient.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "allegro_api_client"
|
|
7
|
-
spec.version = '0.0.
|
|
7
|
+
spec.version = '0.0.4'
|
|
8
8
|
spec.authors = ["@ruby_gem"]
|
|
9
9
|
spec.email = ["developers@allegro.net"]
|
|
10
10
|
spec.summary = %q{httpparty wrapper}
|
data/lib/allegro_api_client.rb
CHANGED
data/rakefile.rb
CHANGED
|
@@ -2,10 +2,16 @@ require 'test/unit'
|
|
|
2
2
|
require_relative '../lib/allegro_api_client'
|
|
3
3
|
|
|
4
4
|
class APIClientTests < Test::Unit::TestCase
|
|
5
|
+
def test_environment_variables
|
|
6
|
+
assert_not_nil ENV['API_URI'], "You need to set the API_URI environment variable"
|
|
7
|
+
assert_not_nil ENV['AUTH_TOKEN'], "You need to set the AUTH_TOKEN environment variable"
|
|
8
|
+
end
|
|
9
|
+
|
|
5
10
|
def test_get
|
|
11
|
+
ENV['API_URI'] = 'https://bob.com'
|
|
6
12
|
api_client = APIClient.new http_client:self
|
|
7
13
|
api_client.get(path:'/bob face')
|
|
8
|
-
assert_equal('https://
|
|
14
|
+
assert_equal('https://bob.com/bob%20face',@path)
|
|
9
15
|
end
|
|
10
16
|
|
|
11
17
|
def get(path, options)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: allegro_api_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "@ruby_gem"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|