httpclient-uploadio 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 90eca865b3873d4a712b241ae1141b1a972e4377
4
+ data.tar.gz: f748d5bbbfaee11e3917f2510d092454baba91d9
5
+ SHA512:
6
+ metadata.gz: 01a27afe8e0dac8f2b96f8966a182bea90c2a2b949502d484e1a66729542e1e48ac747b06d039debdcbcc6b84067bad4ab84594d3498a79c09421f64d44b4f0c
7
+ data.tar.gz: 344c714886ac6a22cd9e9225433adfd4a364bd37df595c9ccb3717d65a406a6510cf36cca11825597ab73fa61bc6806339682971309b70cfdfbb2c5ecdd54997
@@ -1,9 +1,11 @@
1
1
  # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/httpclient-uploadio/version', __FILE__)
3
+
2
4
  Gem::Specification.new do |gem|
3
5
  gem.authors = ["jugyo"]
4
6
  gem.email = ["jugyo.org@gmail.com"]
5
- gem.description = %q{You can upload an IO to a web server through httpclient-uploadio.}
6
- gem.summary = %q{Wrapper for IO to upload to web server}
7
+ gem.description = %q{Wrapper for IO to upload to web server}
8
+ gem.summary = %q{You can upload an IO to a web server through httpclient-uploadio.}
7
9
  gem.homepage = "https://github.com/jugyo/httpclient-uploadio"
8
10
 
9
11
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -11,7 +13,7 @@ Gem::Specification.new do |gem|
11
13
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
12
14
  gem.name = "httpclient-uploadio"
13
15
  gem.require_paths = ["lib"]
14
- gem.version = '1.0.0'
16
+ gem.version = HTTPClient::UploadIO::VERSION
15
17
 
16
18
  gem.add_dependency 'httpclient', '~> 2.2'
17
19
  end
@@ -1,7 +1 @@
1
- require "httpclient-uploadio/version"
2
-
3
- module Httpclient
4
- module Uploadio
5
- # Your code goes here...
6
- end
7
- end
1
+ require "httpclient/uploadio"
@@ -0,0 +1,5 @@
1
+ class HTTPClient
2
+ class UploadIO
3
+ VERSION = '1.0.1'
4
+ end
5
+ end
@@ -1,5 +1,6 @@
1
- require 'forwardable'
2
1
  require 'httpclient'
2
+ require 'forwardable'
3
+ require "httpclient-uploadio/version"
3
4
 
4
5
  class HTTPClient
5
6
  class UploadIO
metadata CHANGED
@@ -1,28 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httpclient-uploadio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
5
- prerelease:
4
+ version: 1.0.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - jugyo
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2011-10-13 00:00:00.000000000Z
11
+ date: 2013-04-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: httpclient
16
- requirement: &2153480020 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
19
  version: '2.2'
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *2153480020
25
- description: You can upload an IO to a web server through httpclient-uploadio.
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '2.2'
27
+ description: Wrapper for IO to upload to web server
26
28
  email:
27
29
  - jugyo.org@gmail.com
28
30
  executables: []
@@ -36,29 +38,29 @@ files:
36
38
  - examples/upload.rb
37
39
  - httpclient-uploadio.gemspec
38
40
  - lib/httpclient-uploadio.rb
41
+ - lib/httpclient-uploadio/version.rb
39
42
  - lib/httpclient/uploadio.rb
40
43
  homepage: https://github.com/jugyo/httpclient-uploadio
41
44
  licenses: []
45
+ metadata: {}
42
46
  post_install_message:
43
47
  rdoc_options: []
44
48
  require_paths:
45
49
  - lib
46
50
  required_ruby_version: !ruby/object:Gem::Requirement
47
- none: false
48
51
  requirements:
49
- - - ! '>='
52
+ - - '>='
50
53
  - !ruby/object:Gem::Version
51
54
  version: '0'
52
55
  required_rubygems_version: !ruby/object:Gem::Requirement
53
- none: false
54
56
  requirements:
55
- - - ! '>='
57
+ - - '>='
56
58
  - !ruby/object:Gem::Version
57
59
  version: '0'
58
60
  requirements: []
59
61
  rubyforge_project:
60
- rubygems_version: 1.8.11
62
+ rubygems_version: 2.0.3
61
63
  signing_key:
62
- specification_version: 3
63
- summary: Wrapper for IO to upload to web server
64
+ specification_version: 4
65
+ summary: You can upload an IO to a web server through httpclient-uploadio.
64
66
  test_files: []