allegro_api_client 0.0.1 → 0.0.2

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: 0236ad9516ef0ddc4406c0f2f17f054473688169
4
- data.tar.gz: f5aca88870d1d59b79705ae5a104434ef8bdc32f
3
+ metadata.gz: 9d62293ec8169c6811b037bdb7c4ac734759cced
4
+ data.tar.gz: 20bb17cb542e9f0943ccc115e0b7af52d61a3b04
5
5
  SHA512:
6
- metadata.gz: a7fa2524a6608763215e9777186d8a78b03f4589dad724fc15fef9ab06c40e209b2c5c8dc7882df143fe3ffd06c4ad75193bc87639ba19d9a32f54caef5b8ebe
7
- data.tar.gz: 217f8eeefbdff58e0b048f21ea78f86c7ab8b8e726a55ae2e000e3dac5b7ee60e3eb057dafcf0c273ac17fc779db436a2586f2cae4f146dbf1bc3d3492641bf9
6
+ metadata.gz: 6d880a31e769482008c7f3827ef8f42107affbb2f5dba356bd6ff20bd259ff5d0b4cf8e4c5af117a0a7bb0b518cd7da0131a83c3a77d9d04ca0d76f905e9463f
7
+ data.tar.gz: b739d3695de5549a1bf13b8a3d07910465a7cb229db5c8049c211cefc51f1d06706c19b6467dffcfbad8807e3b1e444f5592fdd25b3a323fa6771012b8f2c1f4
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- allegro_api_client (0.0.1)
4
+ allegro_api_client (0.0.2)
5
5
  httparty
6
6
 
7
7
  GEM
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 ruby_gem
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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.1'
7
+ spec.version = '0.0.2'
8
8
  spec.authors = ["@ruby_gem"]
9
9
  spec.email = ["developers@allegro.net"]
10
10
  spec.summary = %q{httpparty wrapper}
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.files = `git ls-files -z`.split("\x0")
16
16
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
- spec.require_paths = ["src"]
18
+ spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_development_dependency "bundler", "~> 1.6"
21
21
  spec.add_development_dependency "rake"
File without changes
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require_relative '../src/APIClient'
2
+ require_relative '../lib/APIClient'
3
3
 
4
4
  class APIClientTests < Test::Unit::TestCase
5
5
  def test_get
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: allegro_api_client
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
  - "@ruby_gem"
@@ -74,8 +74,10 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - ".bundle/config"
77
+ - ".gitignore"
77
78
  - Gemfile
78
79
  - Gemfile.lock
80
+ - LICENSE.txt
79
81
  - README.md
80
82
  - apiclient.gemspec
81
83
  - gems/ruby/2.1.0/bin/httparty
@@ -364,8 +366,8 @@ files:
364
366
  - gems/ruby/2.1.0/specifications/httparty-0.13.1.gemspec
365
367
  - gems/ruby/2.1.0/specifications/multi_xml-0.5.5.gemspec
366
368
  - gems/ruby/2.1.0/specifications/rake-10.3.2.gemspec
369
+ - lib/APIClient.rb
367
370
  - rakefile.rb
368
- - src/APIClient.rb
369
371
  - test/test_git_repository_commit.rb
370
372
  homepage: https://github.com/Allegro-Networks/APIClient
371
373
  licenses:
@@ -374,7 +376,7 @@ metadata: {}
374
376
  post_install_message:
375
377
  rdoc_options: []
376
378
  require_paths:
377
- - src
379
+ - lib
378
380
  required_ruby_version: !ruby/object:Gem::Requirement
379
381
  requirements:
380
382
  - - ">="