enhanced-elastic-beanstalk 1.2.3 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +89 -19
- data/lib/elastic/beanstalk/tasks/eb.rake +0 -1
- data/lib/elastic/beanstalk/version.rb +1 -1
- metadata +1 -2
- data/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d896c61781f913c5dffdd2b7a9e9bbf8c517f0fe
|
4
|
+
data.tar.gz: d1aede39ca8926234523f362feafa82d5c32087e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c05c800e2d50e98c5f4788c08f84aeacfd9da53b59428d3b030535cc71bbe6c6c1a2786a4322d7f4ce41ddef5e92c9c9beeb9252a7f73d791e338c656e9d742b
|
7
|
+
data.tar.gz: 025a02b4451d74736e7de13747b3ef6adae6db3af7f1f67ddc047a299889d9d709bd4760d9796f259496f7584657fd7a82323c736ebb96ed65ac0c633b21de9e
|
data/.gitignore
CHANGED
@@ -1,23 +1,93 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
#----------------------------------------------------------------------------
|
2
|
+
# Ignore these files when commiting to a git repository.
|
3
|
+
#
|
4
|
+
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
5
|
+
#
|
6
|
+
# The original version of this file is found here:
|
7
|
+
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt
|
8
|
+
#
|
9
|
+
# Corrections? Improvements? Create a GitHub issue:
|
10
|
+
# http://github.com/RailsApps/rails-composer/issues
|
11
|
+
#----------------------------------------------------------------------------
|
12
|
+
|
13
|
+
# bundler state
|
14
|
+
/.bundle
|
15
|
+
/vendor/bundle/
|
16
|
+
/vendor/ruby/
|
17
|
+
|
18
|
+
# minimal Rails specific artifacts
|
19
|
+
db/*.sqlite3
|
20
|
+
/db/*.sqlite3-journal
|
21
|
+
/log/*
|
22
|
+
/tmp/*
|
23
|
+
|
24
|
+
# add /config/database.yml if it contains passwords
|
25
|
+
# /config/database.yml
|
26
|
+
|
27
|
+
# various artifacts
|
28
|
+
**.war
|
3
29
|
*.rbc
|
4
|
-
|
5
|
-
.
|
6
|
-
.
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
30
|
+
*.sassc
|
31
|
+
.redcar/
|
32
|
+
.sass-cache
|
33
|
+
/config/config.yml
|
34
|
+
/coverage.data
|
35
|
+
/coverage/
|
36
|
+
/db/*.javadb/
|
37
|
+
/db/*.sqlite3
|
38
|
+
/doc/api/
|
39
|
+
/doc/app/
|
40
|
+
/doc/features.html
|
41
|
+
/doc/specs.html
|
42
|
+
/public/cache
|
43
|
+
/public/stylesheets/compiled
|
44
|
+
/public/system/*
|
45
|
+
/spec/tmp/*
|
46
|
+
/cache
|
47
|
+
/capybara*
|
48
|
+
/capybara-*.html
|
49
|
+
/gems
|
50
|
+
/specifications
|
51
|
+
rerun.txt
|
52
|
+
pickle-email-*.html
|
53
|
+
.zeus.sock
|
54
|
+
|
55
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
56
|
+
# or operating system, you probably want to add a global ignore instead:
|
57
|
+
# git config --global core.excludesfile ~/.gitignore_global
|
58
|
+
#
|
59
|
+
# Here are some files you may want to ignore globally:
|
60
|
+
|
61
|
+
# scm revert files
|
62
|
+
**.orig
|
63
|
+
|
64
|
+
# Mac finder artifacts
|
65
|
+
.DS_Store
|
19
66
|
|
67
|
+
# Netbeans project directory
|
68
|
+
/nbproject/
|
69
|
+
|
70
|
+
# RubyMine project files
|
20
71
|
.idea
|
21
|
-
bin/eb.yml
|
22
72
|
|
23
|
-
|
73
|
+
# Textmate project files
|
74
|
+
/*.tmproj
|
75
|
+
|
76
|
+
# vim artifacts
|
77
|
+
**.swp
|
78
|
+
|
79
|
+
# Environment files that may contain sensitive data
|
80
|
+
.powenv
|
81
|
+
|
82
|
+
# tilde files are usually backup files from a text editor
|
83
|
+
*~
|
84
|
+
|
85
|
+
# we locally precompile on deploy, but don't want these checked into repo
|
86
|
+
/public/assets
|
87
|
+
/public/dev-assets
|
88
|
+
|
89
|
+
.env
|
90
|
+
.env.local
|
91
|
+
.secrets/
|
92
|
+
pkg/
|
93
|
+
*_secrets.zip
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: enhanced-elastic-beanstalk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt E. Patterson
|
@@ -208,7 +208,6 @@ executables:
|
|
208
208
|
extensions: []
|
209
209
|
extra_rdoc_files: []
|
210
210
|
files:
|
211
|
-
- ".DS_Store"
|
212
211
|
- ".gitignore"
|
213
212
|
- ".rspec"
|
214
213
|
- ".ruby-gemset"
|
data/.DS_Store
DELETED
Binary file
|