aws_docker_utils 0.0.2 → 0.0.3

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.
@@ -0,0 +1,2 @@
1
+ *.gem
2
+ *.yml
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'aws_docker_utils/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = 'aws_docker_utils'
8
+ s.version = AwsDockerUtils::VERSION
9
+ s.date = '2016-04-15'
10
+ s.summary = "Utils package for working with AWS and Docker."
11
+ s.description = "Utils package for working with AWS and Docker."
12
+ s.authors = ["Bogdan Kulbida"]
13
+ s.email = "bkulbida@gmail.com"
14
+ s.files = `git ls-files`.split($\)
15
+ s.require_paths = ["lib"]
16
+ s.executables = ["aws_docker_utils"]
17
+ s.homepage = "http://rubygems.org/gems/aws_docker_utils"
18
+ s.license = "MIT"
19
+ s.add_runtime_dependency "aws-sdk"
20
+ s.add_runtime_dependency "docopt"
21
+ end
@@ -4,6 +4,8 @@ require "docopt"
4
4
  require_relative "../lib/collectors/to_s3.rb"
5
5
 
6
6
  module AwsDockerUtils
7
+
8
+ VERSION = '0.0.3'
7
9
 
8
10
  doc = <<DOCOPT
9
11
  AWS Docker Utils Module.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_docker_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -50,11 +50,13 @@ executables:
50
50
  extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
- - lib/s3/client.rb
54
- - lib/utils.rb
53
+ - .gitignore
54
+ - aws_docker_utils.gemspec
55
+ - bin/aws_docker_utils
55
56
  - lib/collectors/to_s3.rb
56
57
  - lib/docker_compose/client.rb
57
- - bin/aws_docker_utils
58
+ - lib/s3/client.rb
59
+ - lib/utils.rb
58
60
  homepage: http://rubygems.org/gems/aws_docker_utils
59
61
  licenses:
60
62
  - MIT