lambdapunt 0.1.0

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: 28aa92a95dd761037cd481660de4694d4ead9342
4
+ data.tar.gz: bd4f479df542927a1023753e5990cb5fe168301b
5
+ SHA512:
6
+ metadata.gz: f353fe00e23e901fb181fd2a26bf0f9d980f19b01b1fb81188bf99245cfbf3cde0211888baed48e9a3bbfc3057856cd3304e10939a04cb68fd5b1b4bcb5b3e17
7
+ data.tar.gz: 757365fd470a2979ba6f71e6b026a8009da0000bce242376c7566361e52cbe00baa880c343b6adba54f8d13273f140d27fb39d9ec2ea8535b2f3fd98741bb9c9
Binary file
Binary file
@@ -0,0 +1 @@
1
+ service_name: travis-ci
@@ -0,0 +1,94 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # Created by https://www.gitignore.io/api/osx,sublimetext,ruby
12
+
13
+ ### OSX ###
14
+ .DS_Store
15
+ .AppleDouble
16
+ .LSOverride
17
+
18
+ # Icon must end with two \r
19
+ Icon
20
+
21
+
22
+ # Thumbnails
23
+ ._*
24
+
25
+ # Files that might appear in the root of a volume
26
+ .DocumentRevisions-V100
27
+ .fseventsd
28
+ .Spotlight-V100
29
+ .TemporaryItems
30
+ .Trashes
31
+ .VolumeIcon.icns
32
+
33
+ # Directories potentially created on remote AFP share
34
+ .AppleDB
35
+ .AppleDesktop
36
+ Network Trash Folder
37
+ Temporary Items
38
+ .apdisk
39
+
40
+
41
+ ### SublimeText ###
42
+ # cache files for sublime text
43
+ *.tmlanguage.cache
44
+ *.tmPreferences.cache
45
+ *.stTheme.cache
46
+
47
+ # workspace files are user-specific
48
+ *.sublime-workspace
49
+
50
+ # project files should be checked into the repository, unless a significant
51
+ # proportion of contributors will probably not be using SublimeText
52
+ # *.sublime-project
53
+
54
+ # sftp configuration file
55
+ sftp-config.json
56
+
57
+
58
+ ### Ruby ###
59
+ *.gem
60
+ *.rbc
61
+ /.config
62
+ /coverage/
63
+ /InstalledFiles
64
+ /pkg/
65
+ /spec/reports/
66
+ /spec/examples.txt
67
+ /test/tmp/
68
+ /test/version_tmp/
69
+ /tmp/
70
+
71
+ ## Specific to RubyMotion:
72
+ .dat*
73
+ .repl_history
74
+ build/
75
+
76
+ ## Documentation cache and generated files:
77
+ /.yardoc/
78
+ /_yardoc/
79
+ /doc/
80
+ /rdoc/
81
+
82
+ ## Environment normalisation:
83
+ /.bundle/
84
+ /vendor/bundle
85
+ /lib/bundler/man/
86
+
87
+ # for a library or gem, you might want to ignore these files since the code is
88
+ # intended to run in multiple environments; otherwise, check them in:
89
+ # Gemfile.lock
90
+ # .ruby-version
91
+ # .ruby-gemset
92
+
93
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
94
+ .rvmrc
@@ -0,0 +1 @@
1
+ 2.2.1
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - 2.2.1
6
+
7
+ before_install: gem install bundler -v 1.10.6
8
+
9
+ script: 'bundle exec rake'
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lambdapunt.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Daniel Meyer
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,7 @@
1
+ # lambdapunt
2
+ AWS Lamba deployment mechanism for Java projects.
3
+
4
+ [![Build Status](https://travis-ci.org/danielmeyer/lambdapunt.svg)](https://travis-ci.org/danielmeyer/lambdapunt)
5
+ [![Coverage Status](https://coveralls.io/repos/danielmeyer/lambdapunt/badge.svg?branch=master&service=github)](https://coveralls.io/github/danielmeyer/lambdapunt?branch=master)
6
+ [![security](https://hakiri.io/github/danielmeyer/lambdapunt/master.svg)](https://hakiri.io/github/danielmeyer/lambdapunt/master)
7
+ [![Dependency Status](https://gemnasium.com/danielmeyer/lambdapunt.svg)](https://gemnasium.com/danielmeyer/lambdapunt)
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "lambdapunt"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ require "pry"
10
+ Pry.start
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "lambdapunt"
4
+
5
+ Lambdapunt::CLI.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,22 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDkjCCAnqgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMRkwFwYDVQQDDBB0aGUu
3
+ ZGFuaWVsLm1leWVyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/Is
4
+ ZAEZFgNjb20wHhcNMTUwODI5MTgyMDQyWhcNMTYwODI4MTgyMDQyWjBHMRkwFwYD
5
+ VQQDDBB0aGUuZGFuaWVsLm1leWVyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzAR
6
+ BgoJkiaJk/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
7
+ AQDZBqr/5hHz9wN08P2dUJVNQ5+KRSi1dxYON9tH+rtqp2UtY0uxiMphhSIGeOyC
8
+ 8XqEid2aSfKN78zZdEWZZl0jkH0uz3wp3U47wCa7vVJ/X22tSalVxnrM5zk1+8hD
9
+ vsSvXEXtD6JgnI54el+8tM+do6w1wlJtRmDBUhhJlVIhkzAt0AmtXuqaLKTDbLil
10
+ xMvIkOAaAQCA9I2rKbo4PTp2suaccUtLFq3ZnUXZShE+hy6bW8mQlrGEzfnJVDZi
11
+ oVbk5Zhq9+9Y5blfr9y05kB9mlophj1kfVEslQOQledYU2hKTjlus+2JTFVY8EDE
12
+ p9ab+xtYZN9b2jt1udfNov/nAgMBAAGjgYgwgYUwCQYDVR0TBAIwADALBgNVHQ8E
13
+ BAMCBLAwHQYDVR0OBBYEFKuoSHNjZX7iBvHu7bSyZ8KipqddMCUGA1UdEQQeMByB
14
+ GnRoZS5kYW5pZWwubWV5ZXJAZ21haWwuY29tMCUGA1UdEgQeMByBGnRoZS5kYW5p
15
+ ZWwubWV5ZXJAZ21haWwuY29tMA0GCSqGSIb3DQEBBQUAA4IBAQAkYhgXgLlICP/u
16
+ 5cPnDAAMeaAoS5HrbzETg5CyAPjOKU2veQJiqWW8Yrpl1UKy8DlnXCUholdrvVzM
17
+ ztI9LhKrWqePCB9fOCK8UTXgyeiO4eDnE2PuATnMu2W/LENcmhpi1n2U5b6p7wzW
18
+ jW3gVDkSSqBopKLyiQOhRA2+fehreUuQuNtoIcPybuzlcaL3fO0jMapKvFSgKlN3
19
+ ikCfHZOiezplME2AR+Ic/Nvj36iQjT4z3GNZVLEy7A2jXNIVVxd1C2c5L+kURnzq
20
+ JPK3nZE3xCDDyuqRlklMwkez36Azf+o6clNsU0PS45x1wsnjJpG6eR7Q18T760Gg
21
+ GiwyRQFX
22
+ -----END CERTIFICATE-----
@@ -0,0 +1,41 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'lambdapunt/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "lambdapunt"
8
+ spec.version = Lambdapunt::VERSION
9
+ spec.authors = ["Daniel Meyer"]
10
+ spec.email = ["the.daniel.meyer@gmail.com"]
11
+
12
+ spec.summary = %q{AWS Lambda deploy tool for Java projects}
13
+ spec.description = %q{This tool will deploy jar files and update lambda functions.}
14
+ spec.homepage = "https://github.com/danielmeyer/lambdapunt"
15
+ spec.license = "MIT"
16
+
17
+ spec.cert_chain = ['certs/danielmeyer.pem']
18
+ spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
19
+
20
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
21
+ # delete this section to allow pushing this gem to any host.
22
+ if spec.respond_to?(:metadata)
23
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
24
+ else
25
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
26
+ end
27
+
28
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.10"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "minitest", "~> 5.8"
36
+ spec.add_development_dependency "coveralls", "~> 0.8"
37
+ spec.add_development_dependency "pry", "~> 0.10"
38
+ spec.add_development_dependency "thor", "~> 0.19"
39
+ spec.add_development_dependency "gem-release", "~> 0.7"
40
+
41
+ end
@@ -0,0 +1,6 @@
1
+ require 'lambdapunt/version'
2
+ require 'lambdapunt/cli'
3
+
4
+ module Lambdapunt
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,11 @@
1
+ require "thor"
2
+
3
+ module Lambdapunt
4
+ class CLI < Thor
5
+ desc "version", "display version"
6
+ def version
7
+ puts "lambdapunt version #{::Lambdapunt::VERSION}"
8
+ end
9
+ end
10
+
11
+ end
@@ -0,0 +1,3 @@
1
+ module Lambdapunt
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lambdapunt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Meyer
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDkjCCAnqgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMRkwFwYDVQQDDBB0aGUu
14
+ ZGFuaWVsLm1leWVyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/Is
15
+ ZAEZFgNjb20wHhcNMTUwODI5MTgyMDQyWhcNMTYwODI4MTgyMDQyWjBHMRkwFwYD
16
+ VQQDDBB0aGUuZGFuaWVsLm1leWVyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzAR
17
+ BgoJkiaJk/IsZAEZFgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
18
+ AQDZBqr/5hHz9wN08P2dUJVNQ5+KRSi1dxYON9tH+rtqp2UtY0uxiMphhSIGeOyC
19
+ 8XqEid2aSfKN78zZdEWZZl0jkH0uz3wp3U47wCa7vVJ/X22tSalVxnrM5zk1+8hD
20
+ vsSvXEXtD6JgnI54el+8tM+do6w1wlJtRmDBUhhJlVIhkzAt0AmtXuqaLKTDbLil
21
+ xMvIkOAaAQCA9I2rKbo4PTp2suaccUtLFq3ZnUXZShE+hy6bW8mQlrGEzfnJVDZi
22
+ oVbk5Zhq9+9Y5blfr9y05kB9mlophj1kfVEslQOQledYU2hKTjlus+2JTFVY8EDE
23
+ p9ab+xtYZN9b2jt1udfNov/nAgMBAAGjgYgwgYUwCQYDVR0TBAIwADALBgNVHQ8E
24
+ BAMCBLAwHQYDVR0OBBYEFKuoSHNjZX7iBvHu7bSyZ8KipqddMCUGA1UdEQQeMByB
25
+ GnRoZS5kYW5pZWwubWV5ZXJAZ21haWwuY29tMCUGA1UdEgQeMByBGnRoZS5kYW5p
26
+ ZWwubWV5ZXJAZ21haWwuY29tMA0GCSqGSIb3DQEBBQUAA4IBAQAkYhgXgLlICP/u
27
+ 5cPnDAAMeaAoS5HrbzETg5CyAPjOKU2veQJiqWW8Yrpl1UKy8DlnXCUholdrvVzM
28
+ ztI9LhKrWqePCB9fOCK8UTXgyeiO4eDnE2PuATnMu2W/LENcmhpi1n2U5b6p7wzW
29
+ jW3gVDkSSqBopKLyiQOhRA2+fehreUuQuNtoIcPybuzlcaL3fO0jMapKvFSgKlN3
30
+ ikCfHZOiezplME2AR+Ic/Nvj36iQjT4z3GNZVLEy7A2jXNIVVxd1C2c5L+kURnzq
31
+ JPK3nZE3xCDDyuqRlklMwkez36Azf+o6clNsU0PS45x1wsnjJpG6eR7Q18T760Gg
32
+ GiwyRQFX
33
+ -----END CERTIFICATE-----
34
+ date: 2015-08-29 00:00:00.000000000 Z
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: bundler
38
+ requirement: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '1.10'
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.10'
50
+ - !ruby/object:Gem::Dependency
51
+ name: rake
52
+ requirement: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - "~>"
55
+ - !ruby/object:Gem::Version
56
+ version: '10.0'
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '10.0'
64
+ - !ruby/object:Gem::Dependency
65
+ name: minitest
66
+ requirement: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '5.8'
71
+ type: :development
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '5.8'
78
+ - !ruby/object:Gem::Dependency
79
+ name: coveralls
80
+ requirement: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: '0.8'
85
+ type: :development
86
+ prerelease: false
87
+ version_requirements: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - "~>"
90
+ - !ruby/object:Gem::Version
91
+ version: '0.8'
92
+ - !ruby/object:Gem::Dependency
93
+ name: pry
94
+ requirement: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - "~>"
97
+ - !ruby/object:Gem::Version
98
+ version: '0.10'
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - "~>"
104
+ - !ruby/object:Gem::Version
105
+ version: '0.10'
106
+ - !ruby/object:Gem::Dependency
107
+ name: thor
108
+ requirement: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '0.19'
113
+ type: :development
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '0.19'
120
+ - !ruby/object:Gem::Dependency
121
+ name: gem-release
122
+ requirement: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - "~>"
125
+ - !ruby/object:Gem::Version
126
+ version: '0.7'
127
+ type: :development
128
+ prerelease: false
129
+ version_requirements: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - "~>"
132
+ - !ruby/object:Gem::Version
133
+ version: '0.7'
134
+ description: This tool will deploy jar files and update lambda functions.
135
+ email:
136
+ - the.daniel.meyer@gmail.com
137
+ executables: []
138
+ extensions: []
139
+ extra_rdoc_files: []
140
+ files:
141
+ - ".coveralls.yml"
142
+ - ".gitignore"
143
+ - ".ruby-version"
144
+ - ".travis.yml"
145
+ - Gemfile
146
+ - LICENSE
147
+ - README.md
148
+ - Rakefile
149
+ - bin/console
150
+ - bin/lpunt
151
+ - bin/setup
152
+ - certs/danielmeyer.pem
153
+ - lambdapunt.gemspec
154
+ - lib/lambdapunt.rb
155
+ - lib/lambdapunt/cli.rb
156
+ - lib/lambdapunt/version.rb
157
+ homepage: https://github.com/danielmeyer/lambdapunt
158
+ licenses:
159
+ - MIT
160
+ metadata:
161
+ allowed_push_host: https://rubygems.org
162
+ post_install_message:
163
+ rdoc_options: []
164
+ require_paths:
165
+ - lib
166
+ required_ruby_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: '0'
176
+ requirements: []
177
+ rubyforge_project:
178
+ rubygems_version: 2.4.8
179
+ signing_key:
180
+ specification_version: 4
181
+ summary: AWS Lambda deploy tool for Java projects
182
+ test_files: []
@@ -0,0 +1,2 @@
1
+ >�P��=yK���Sk4�@�I�M1~'{��4��F!�-p� �BǼQ/��R �+��vW���5)q����GȮ���߹�<�������3�M)�� �B��ب��9���E�hB��VCeIk1(���J��T�o��Z.]��F�hy��M���9f��W
2
+ zbZRX�~�@]�N�g�t�bi�`�)0�K`,��=�v`RZ�[��&:6O�ܡ> B,�#juV%����ylP��O�*���P)E?c��_