em-deploy 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0a65d05a41779dddf3ad2d1d52e5a8ad1e65cd49
4
+ data.tar.gz: 219f9c2d7b87303e36c564150166c71c9d0df89b
5
+ SHA512:
6
+ metadata.gz: abcc48ca87a9a023e8845c3a337fb3a9500ef6ae7da1d1d82c405598c60605b625318db10f077900a1dab38f7a9538fb8db844b4ed878f3552023daa06fbfa1f
7
+ data.tar.gz: ec6efb875e8d860cae3a618ad795afb8a426c2ee2a694def31316bccb396d5aa86b05631b0c18482022dc275282ff1b63f8815df99ad21d51889f2275919c189
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.iml
12
+ *.idea/*
13
+ *.so
14
+ *.o
15
+ *.a
16
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in em-deploy.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Zachary Golba
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
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Zachary Golba
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/README.md ADDED
@@ -0,0 +1,56 @@
1
+ # EmDeploy
2
+
3
+ Use AWS S3 and Redis to deploy your ember-cli application. <a href="http://youtu.be/QZVYP3cPcWQ" target="_blank">Learn more...</a>
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'em-deploy'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install em-deploy
20
+
21
+ ## Usage
22
+
23
+ To deploy your ember-cli application:
24
+
25
+ ```bash
26
+ cd /path/to/application;
27
+ em-deploy -e #{environment};
28
+ ```
29
+
30
+ `em-deploy` requires a configuration file in the root of your ember-cli project containing the following parameters in the example below.
31
+
32
+ ```js
33
+ {
34
+ "production": {
35
+ "prefix": "path/to/assets",
36
+ "aws": {
37
+ "region": "us-east-1",
38
+ "bucket": "s3-bucket-name",
39
+ "access_key_id": "key",
40
+ "secret_access_key": "secret"
41
+ },
42
+ "redis": {
43
+ "host": "127.0.0.1",
44
+ "port": 6379
45
+ }
46
+ }
47
+ }
48
+ ```
49
+
50
+ ## Contributing
51
+
52
+ 1. Fork it ( https://github.com/[my-github-username]/ember_deploy/fork )
53
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
54
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
55
+ 4. Push to the branch (`git push origin my-new-feature`)
56
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler/gem_tasks'
2
+
data/bin/em-deploy ADDED
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'colorize'
4
+ require 'em-deploy'
5
+
6
+ if system('which ember > /dev/null 2>&1')
7
+ cd = Dir.pwd
8
+
9
+ if File.exist?("#{cd}/deploy.json")
10
+ if File.exist?("#{cd}/.git")
11
+ idx = 0
12
+
13
+ if ARGV.index('-e')
14
+ idx = ARGV.index('-e') + 1
15
+ elsif ARGV.index('--environment')
16
+ idx = ARGV.index('--environment') + 1
17
+ end
18
+
19
+ idx > 0 ? EmDeploy::Deployment.new(ARGV[idx]) : EmDeploy::Deployment.new
20
+ else
21
+ puts "#{'Error'.colorize(:red)}: Not a valid git repository."
22
+ end
23
+ else
24
+ puts "#{'Error'.colorize(:red)}: Configuration must be provided in a 'deploy.json' file in the root directory of your ember-cli project."
25
+ end
26
+ else
27
+ puts "#{'Error'.colorize(:red)}: Ember Cli must be installed.\n\nRun 'npm install -g ember-cli'."
28
+ end
data/em-deploy.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'em-deploy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'em-deploy'
8
+ spec.version = EmDeploy::VERSION
9
+ spec.authors = ['Zachary Golba']
10
+ spec.email = ['zak@zacharygolba.com']
11
+ spec.summary = %q{Easily deploy ember-cli applications with Amazon S3 and Redis.}
12
+ spec.description = %q{}
13
+ spec.homepage = 'https://github.com/zacharygolba/em-deploy'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.7'
22
+ spec.add_development_dependency 'rake', '~> 10.0'
23
+
24
+ spec.add_runtime_dependency 'aws-sdk', '~> 2.0', '>= 2.0.22'
25
+ spec.add_runtime_dependency 'colorize', '~> 0.7', '>= 0.7.5'
26
+ spec.add_runtime_dependency 'redis', '~> 3.2', '>= 3.2.0'
27
+ spec.add_runtime_dependency 'ruby-progressbar', '~> 1.7', '>= 1.7.1'
28
+ end
data/lib/em-deploy.rb ADDED
@@ -0,0 +1,13 @@
1
+ require 'json'
2
+ require 'zlib'
3
+ require 'thread'
4
+ require 'stringio'
5
+ require 'redis'
6
+ require 'aws-sdk'
7
+ require 'colorize'
8
+ require 'ruby-progressbar'
9
+ require 'em-deploy/uploader'
10
+ require 'em-deploy/deployment'
11
+
12
+ module EmDeploy
13
+ end
@@ -0,0 +1,96 @@
1
+ module EmDeploy
2
+ class Deployment
3
+ attr_accessor :app_name, :config, :revision
4
+
5
+ def upload_assets
6
+ bar = ProgressBar.create(title: 'Uploading Assets', progress_mark: '='.colorize(:light_blue), length: 80)
7
+ count = 0
8
+ threads = []
9
+
10
+ Dir.glob('./dist/assets/*') do |path|
11
+ t = Thread.new do
12
+ p = File.expand_path(path)
13
+ if File.directory?(p)
14
+ Dir.glob("#{p}/*") { |sub| Uploader.new(sub, config) }
15
+ else
16
+ Uploader.new(p, config)
17
+ end
18
+ end
19
+ threads.push(t)
20
+ end
21
+
22
+ bar.total = threads.count
23
+ bar.progress = count
24
+
25
+ while count < threads.count do
26
+ count = threads.map { |t| t unless t.alive? }.compact.count
27
+ bar.progress = count
28
+ sleep 0.2
29
+ end
30
+
31
+ threads.each(&:join)
32
+ !threads.map { |t| t.alive? }.compact.include?(true)
33
+ end
34
+
35
+ def activate_revision
36
+ redis = Redis.new(config[:redis])
37
+ redis.set(revision, File.read('./dist/index.html'))
38
+ redis.set("#{app_name}:current", revision)
39
+ end
40
+
41
+ def build_application
42
+ c = %w{ | / - \\ }
43
+ t = Thread.new { %x(ember build --environment #{config[:environment]}) }
44
+
45
+ print "\n"
46
+ print "Building #{app_name.capitalize} "
47
+ while t.alive?
48
+ print c[0]
49
+ sleep 0.1
50
+ print "\b"
51
+ c.push(c.shift)
52
+ end
53
+ t.join
54
+ puts "\n"
55
+ puts "\n"
56
+ end
57
+
58
+ def initialize(environment='development')
59
+ puts %x(tput civis)
60
+
61
+ json = JSON.parse( File.read('./deploy.json') )
62
+ custom = {}
63
+ options = {}
64
+ options[:aws] = { region: 'us-east-1' }
65
+ options[:redis] = { host: '127.0.0.1', port: 6379 }
66
+ options[:environment] = environment
67
+
68
+ if json[environment]
69
+ json[environment].each do |k,v|
70
+ if v.class == Hash
71
+ custom[k.to_sym] = {}
72
+ v.each { |_k,_v| custom[k.to_sym][_k.to_sym] = _v }
73
+ else
74
+ custom[k.to_sym] = v
75
+ end
76
+ end
77
+ end
78
+
79
+ self.config = options.merge!(custom)
80
+ self.revision = %x(git rev-parse --short HEAD).chomp!
81
+ self.app_name = JSON.parse( File.read('./package.json') )['name'].downcase.chomp
82
+
83
+ puts "Preparing to deploy #{app_name.capitalize}. Environment: #{environment} Revision: #{"#{revision}".colorize(:light_blue)}"
84
+ %x(rm -rf #{}/dist) if File.directory?('./dist')
85
+ build_application
86
+
87
+ if File.directory?('./dist')
88
+ upload_assets
89
+ activate_revision
90
+ end
91
+
92
+ puts "\nDeployment Successful!".colorize(:light_green)
93
+ puts %x(tput cnorm)
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,163 @@
1
+ module EmDeploy
2
+ class Uploader
3
+ def self.compress(i)
4
+ o = ''
5
+ io = StringIO.new
6
+ gz = Zlib::GzipWriter.new(io)
7
+
8
+ gz.write(i)
9
+ gz.close
10
+ o << io.string
11
+ io.close unless io.closed?
12
+ o
13
+ end
14
+
15
+ def self.compressable?(file)
16
+ !(self.mime_type_for(file) =~ /\A(application|text)\/.+\z/).nil? && file.size >= 1000
17
+ end
18
+
19
+ def self.mime_type_for(file)
20
+ types = {
21
+ a: 'application/octet-stream',
22
+ ai: 'application/postscript',
23
+ aif: 'audio/x-aiff',
24
+ aifc: 'audio/x-aiff',
25
+ aiff: 'audio/x-aiff',
26
+ au: 'audio/basic',
27
+ avi: 'video/x-msvideo',
28
+ bat: 'text/plain',
29
+ bin: 'application/octet-stream',
30
+ bmp: 'image/x-ms-bmp',
31
+ c: 'text/plain',
32
+ cdf: 'application/x-cdf',
33
+ csh: 'application/x-csh',
34
+ css: 'text/css',
35
+ dll: 'application/octet-stream',
36
+ doc: 'application/msword',
37
+ dot: 'application/msword',
38
+ dvi: 'application/x-dvi',
39
+ eml: 'message/rfc822',
40
+ eps: 'application/postscript',
41
+ etx: 'text/x-setext',
42
+ exe: 'application/octet-stream',
43
+ gif: 'image/gif',
44
+ gtar: 'application/x-gtar',
45
+ h: 'text/plain',
46
+ hdf: 'application/x-hdf',
47
+ htm: 'text/html',
48
+ html: 'text/html',
49
+ jpe: 'image/jpeg',
50
+ jpeg: 'image/jpeg',
51
+ jpg: 'image/jpeg',
52
+ js: 'application/x-javascript',
53
+ ksh: 'text/plain',
54
+ latex: 'application/x-latex',
55
+ m1v: 'video/mpeg',
56
+ man: 'application/x-troff-man',
57
+ me: 'application/x-troff-me',
58
+ mht: 'message/rfc822',
59
+ mhtml: 'message/rfc822',
60
+ mif: 'application/x-mif',
61
+ mov: 'video/quicktime',
62
+ movie: 'video/x-sgi-movie',
63
+ mp2: 'audio/mpeg',
64
+ mp3: 'audio/mpeg',
65
+ mp4: 'video/mp4',
66
+ mpa: 'video/mpeg',
67
+ mpe: 'video/mpeg',
68
+ mpeg: 'video/mpeg',
69
+ mpg: 'video/mpeg',
70
+ ms: 'application/x-troff-ms',
71
+ nc: 'application/x-netcdf',
72
+ nws: 'message/rfc822',
73
+ o: 'application/octet-stream',
74
+ obj: 'application/octet-stream',
75
+ oda: 'application/oda',
76
+ pbm: 'image/x-portable-bitmap',
77
+ pdf: 'application/pdf',
78
+ pfx: 'application/x-pkcs12',
79
+ pgm: 'image/x-portable-graymap',
80
+ png: 'image/png',
81
+ pnm: 'image/x-portable-anymap',
82
+ pot: 'application/vnd.ms-powerpoint',
83
+ ppa: 'application/vnd.ms-powerpoint',
84
+ ppm: 'image/x-portable-pixmap',
85
+ pps: 'application/vnd.ms-powerpoint',
86
+ ppt: 'application/vnd.ms-powerpoint',
87
+ pptx: 'application/vnd.ms-powerpoint',
88
+ ps: 'application/postscript',
89
+ pwz: 'application/vnd.ms-powerpoint',
90
+ py: 'text/x-python',
91
+ pyc: 'application/x-python-code',
92
+ pyo: 'application/x-python-code',
93
+ qt: 'video/quicktime',
94
+ ra: 'audio/x-pn-realaudio',
95
+ ram: 'application/x-pn-realaudio',
96
+ ras: 'image/x-cmu-raster',
97
+ rdf: 'application/xml',
98
+ rgb: 'image/x-rgb',
99
+ roff: 'application/x-troff',
100
+ rtx: 'text/richtext',
101
+ sgm: 'text/x-sgml',
102
+ sgml: 'text/x-sgml',
103
+ sh: 'application/x-sh',
104
+ shar: 'application/x-shar',
105
+ snd: 'audio/basic',
106
+ so: 'application/octet-stream',
107
+ src: 'application/x-wais-source',
108
+ swf: 'application/x-shockwave-flash',
109
+ t: 'application/x-troff',
110
+ tar: 'application/x-tar',
111
+ tcl: 'application/x-tcl',
112
+ tex: 'application/x-tex',
113
+ texi: 'application/x-texinfo',
114
+ texinfo: 'application/x-texinfo',
115
+ tif: 'image/tiff',
116
+ tiff: 'image/tiff',
117
+ tr: 'application/x-troff',
118
+ tsv: 'text/tab-separated-values',
119
+ txt: 'text/plain',
120
+ ustar: 'application/x-ustar',
121
+ vcf: 'text/x-vcard',
122
+ wav: 'audio/x-wav',
123
+ wiz: 'application/msword',
124
+ wsdl: 'application/xml',
125
+ xbm: 'image/x-xbitmap',
126
+ xlb: 'application/vnd.ms-excel',
127
+ xls: 'application/vnd.ms-excel',
128
+ xlsx: 'application/vnd.ms-excel',
129
+ xml: 'text/xml',
130
+ xpdl: 'application/xml',
131
+ xpm: 'image/x-xpixmap',
132
+ xsl: 'application/xml',
133
+ xwd: 'image/x-xwindowdump',
134
+ zip: 'application/zip'
135
+ }
136
+ match = types[File.extname(file.path).gsub!('.', '').to_sym]
137
+ match ? match : 'application/octet-stream'
138
+ end
139
+
140
+ def self.s3_bucket(config)
141
+ creds = Aws::Credentials.new(config[:aws][:access_key_id], config[:aws][:secret_access_key])
142
+ resource = Aws::S3::Resource.new(region: config[:aws][:region], credentials: creds)
143
+
144
+ resource.bucket(config[:aws][:bucket])
145
+ end
146
+
147
+ def initialize(path, config)
148
+ file = File.open(path, 'r')
149
+ data = file.read
150
+ options = {}
151
+ options[:acl] = 'public-read'
152
+ options[:key] = "#{config[:prefix]}assets/#{File.basename(path)}"
153
+ options[:expires] = Time.now + (15*365*24*60*60)
154
+ options[:content_type] = self.class.mime_type_for(file)
155
+ options[:cache_control] = 'max-age=63072000, public'
156
+ options[:body] = self.class.compressable?(file) ? self.class.compress(data) : data
157
+ options[:content_encoding] = 'gzip' if self.class.compressable?(file)
158
+
159
+ file.close unless file.closed?
160
+ self.class.s3_bucket(config).put_object(options)
161
+ end
162
+ end
163
+ end
@@ -0,0 +1,3 @@
1
+ module EmDeploy
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: em-deploy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Zachary Golba
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-02-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aws-sdk
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 2.0.22
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '2.0'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 2.0.22
61
+ - !ruby/object:Gem::Dependency
62
+ name: colorize
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '0.7'
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 0.7.5
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: '0.7'
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 0.7.5
81
+ - !ruby/object:Gem::Dependency
82
+ name: redis
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '3.2'
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 3.2.0
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '3.2'
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: 3.2.0
101
+ - !ruby/object:Gem::Dependency
102
+ name: ruby-progressbar
103
+ requirement: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - "~>"
106
+ - !ruby/object:Gem::Version
107
+ version: '1.7'
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 1.7.1
111
+ type: :runtime
112
+ prerelease: false
113
+ version_requirements: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.7'
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: 1.7.1
121
+ description: ''
122
+ email:
123
+ - zak@zacharygolba.com
124
+ executables:
125
+ - em-deploy
126
+ extensions: []
127
+ extra_rdoc_files: []
128
+ files:
129
+ - ".gitignore"
130
+ - ".idea/.name"
131
+ - ".idea/compiler.xml"
132
+ - ".idea/copyright/profiles_settings.xml"
133
+ - ".idea/encodings.xml"
134
+ - ".idea/inspectionProfiles/Project_Default.xml"
135
+ - ".idea/inspectionProfiles/profiles_settings.xml"
136
+ - ".idea/misc.xml"
137
+ - ".idea/modules.xml"
138
+ - ".idea/scopes/scope_settings.xml"
139
+ - ".idea/vcs.xml"
140
+ - ".idea/workspace.xml"
141
+ - Gemfile
142
+ - LICENSE
143
+ - LICENSE.txt
144
+ - README.md
145
+ - Rakefile
146
+ - bin/em-deploy
147
+ - em-deploy.gemspec
148
+ - lib/em-deploy.rb
149
+ - lib/em-deploy/deployment.rb
150
+ - lib/em-deploy/uploader.rb
151
+ - lib/em-deploy/version.rb
152
+ homepage: https://github.com/zacharygolba/em-deploy
153
+ licenses:
154
+ - MIT
155
+ metadata: {}
156
+ post_install_message:
157
+ rdoc_options: []
158
+ require_paths:
159
+ - lib
160
+ required_ruby_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ required_rubygems_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ requirements: []
171
+ rubyforge_project:
172
+ rubygems_version: 2.4.5
173
+ signing_key:
174
+ specification_version: 4
175
+ summary: Easily deploy ember-cli applications with Amazon S3 and Redis.
176
+ test_files: []