s3io 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/lib/s3io/version.rb +1 -1
  3. data/s3io.gemspec +1 -1
  4. metadata +38 -57
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f3088d652693b5c7ff1cff90c758c634fe84b01b
4
+ data.tar.gz: 263494e78b62fdde80868adf92c60acf01af5d97
5
+ SHA512:
6
+ metadata.gz: c47d8de68cdbc67f8fd00ebd2217964ad02f839c8aaa4973fb051c4187f30592d97a70879373faf160aa479571274f55ea86b00ab8d52100d469fde74f1ccce3
7
+ data.tar.gz: 05f359c046cf1ea0badd8cb0c1380abc753d33d191ba6956dea7cbc0b5bf91e4ae17fc007e5963961f45e67cd3716981edfa57ed6412a1ed4be228152d409f9e
@@ -1,3 +1,3 @@
1
1
  module S3io
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.5"
3
3
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
12
12
  gem.summary = %q{Amazon's official AWS SDK provides an API for S3 that isn't compatible with Ruby's standard IO class and its derivatives. This gem provides a thin wrapper around AWS SDK that makes it possible to access objects stored on S3 as if they were instances of File or StringIO classes.}
13
13
  gem.homepage = "http://github.com/fiksu/s3io"
14
14
 
15
- gem.add_dependency('aws-sdk', "~> 1.64.0")
15
+ gem.add_development_dependency('aws-sdk', "~> 1.64.0")
16
16
 
17
17
  gem.files = `git ls-files`.split($/)
18
18
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,50 +1,38 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: s3io
3
- version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease:
6
- segments:
7
- - 1
8
- - 1
9
- - 4
10
- version: 1.1.4
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.5
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Arthur Pirogovski
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2015-06-17 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
11
+ date: 2015-06-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
21
14
  name: aws-sdk
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.64.0
20
+ type: :development
22
21
  prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 279
29
- segments:
30
- - 1
31
- - 64
32
- - 0
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
33
26
  version: 1.64.0
34
- type: :runtime
35
- version_requirements: *id001
36
27
  description: An IO-compatible wrapper for S3
37
- email:
28
+ email:
38
29
  - arthur@flyingtealeaf.com
39
30
  executables: []
40
-
41
31
  extensions: []
42
-
43
32
  extra_rdoc_files: []
44
-
45
- files:
46
- - .gitignore
47
- - .travis.yml
33
+ files:
34
+ - ".gitignore"
35
+ - ".travis.yml"
48
36
  - Gemfile
49
37
  - LICENSE.txt
50
38
  - README.md
@@ -60,38 +48,31 @@ files:
60
48
  - test/test_s3io_write_wrapper.rb
61
49
  homepage: http://github.com/fiksu/s3io
62
50
  licenses: []
63
-
51
+ metadata: {}
64
52
  post_install_message:
65
53
  rdoc_options: []
66
-
67
- require_paths:
54
+ require_paths:
68
55
  - lib
69
- required_ruby_version: !ruby/object:Gem::Requirement
70
- none: false
71
- requirements:
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
72
58
  - - ">="
73
- - !ruby/object:Gem::Version
74
- hash: 3
75
- segments:
76
- - 0
77
- version: "0"
78
- required_rubygems_version: !ruby/object:Gem::Requirement
79
- none: false
80
- requirements:
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
81
63
  - - ">="
82
- - !ruby/object:Gem::Version
83
- hash: 3
84
- segments:
85
- - 0
86
- version: "0"
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
87
66
  requirements: []
88
-
89
67
  rubyforge_project:
90
- rubygems_version: 1.8.24
68
+ rubygems_version: 2.4.3
91
69
  signing_key:
92
- specification_version: 3
93
- summary: Amazon's official AWS SDK provides an API for S3 that isn't compatible with Ruby's standard IO class and its derivatives. This gem provides a thin wrapper around AWS SDK that makes it possible to access objects stored on S3 as if they were instances of File or StringIO classes.
94
- test_files:
70
+ specification_version: 4
71
+ summary: Amazon's official AWS SDK provides an API for S3 that isn't compatible with
72
+ Ruby's standard IO class and its derivatives. This gem provides a thin wrapper around
73
+ AWS SDK that makes it possible to access objects stored on S3 as if they were instances
74
+ of File or StringIO classes.
75
+ test_files:
95
76
  - test/s3_test_data.csv
96
77
  - test/test_s3io_read_wrapper.rb
97
78
  - test/test_s3io_write_wrapper.rb