mappru 0.1.3 → 0.1.4
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 +4 -4
- data/README.md +6 -3
- data/exe/mappru +15 -3
- data/lib/mappru/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4eef4f343729a5fb1ad516b79f3d3d1c1b9c32bf
|
4
|
+
data.tar.gz: fe13eaeb346e5bd3c95763b26fd7e9d71627fd01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3259828ed212987d43ddb5716a943456b71ba77924a20b7e725556893903931f0cfb844b88c1c7464b3a153cde2e14beadf0623355acff6e620327c1eaba50b2
|
7
|
+
data.tar.gz: fc17693ec0545b8ff8e23b17045d95c29065a7b8941cc73350617896cd1565db69a76e0c28366c1ca9288145062d49f48a0f04f396898939e07c5d2d6c89ade2
|
data/README.md
CHANGED
@@ -25,10 +25,10 @@ Or install it yourself as:
|
|
25
25
|
```sh
|
26
26
|
export AWS_ACCESS_KEY_ID='...'
|
27
27
|
export AWS_SECRET_ACCESS_KEY='...'
|
28
|
-
mappru -e -o
|
28
|
+
mappru -e -o Routetable # export VPC Route Table
|
29
29
|
vi PolicyFile
|
30
30
|
mappru -a --dry-run
|
31
|
-
mappru -a # apply `
|
31
|
+
mappru -a # apply `Routetable`
|
32
32
|
```
|
33
33
|
|
34
34
|
## Help
|
@@ -52,7 +52,7 @@ Usage: mappru [options]
|
|
52
52
|
--debug
|
53
53
|
```
|
54
54
|
|
55
|
-
##
|
55
|
+
## Routetable example
|
56
56
|
|
57
57
|
```ruby
|
58
58
|
require 'other/tablefile'
|
@@ -74,3 +74,6 @@ end
|
|
74
74
|
|
75
75
|
# Undefined VPC will be ignored
|
76
76
|
```
|
77
|
+
|
78
|
+
## Similar tools
|
79
|
+
* [Codenize.tools](http://codenize.tools/)
|
data/exe/mappru
CHANGED
@@ -6,7 +6,8 @@ require 'optparse'
|
|
6
6
|
|
7
7
|
Version = Mappru::VERSION
|
8
8
|
|
9
|
-
|
9
|
+
OLD_DEFAULT_FILENAME = 'RouteTable'
|
10
|
+
DEFAULT_FILENAME = 'Routetable'
|
10
11
|
|
11
12
|
MAGIC_COMMENT = <<-EOS
|
12
13
|
# -*- mode: ruby -*-
|
@@ -141,8 +142,19 @@ def run_apply(client, options)
|
|
141
142
|
logger = Mappru::Logger.instance
|
142
143
|
file = options[:file]
|
143
144
|
|
144
|
-
|
145
|
-
|
145
|
+
# TODO: Remove OLD_DEFAULT_FILENAME support
|
146
|
+
if File.exist?(file)
|
147
|
+
if file == DEFAULT_FILENAME and Dir.glob(DEFAULT_FILENAME).first == OLD_DEFAULT_FILENAME
|
148
|
+
file = OLD_DEFAULT_FILENAME
|
149
|
+
logger.warn(%!"#{OLD_DEFAULT_FILENAME}" is deprecated. Please use "#{DEFAULT_FILENAME}"!.yellow)
|
150
|
+
end
|
151
|
+
else
|
152
|
+
if file == DEFAULT_FILENAME and File.exist?(OLD_DEFAULT_FILENAME)
|
153
|
+
file = OLD_DEFAULT_FILENAME
|
154
|
+
logger.warn(%!"#{OLD_DEFAULT_FILENAME}" is deprecated. Please use "#{DEFAULT_FILENAME}"!.yellow)
|
155
|
+
else
|
156
|
+
raise "No RouteTable found (looking for: #{file})"
|
157
|
+
end
|
146
158
|
end
|
147
159
|
|
148
160
|
message = "Apply `#{file}` to Route Table"
|
data/lib/mappru/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mappru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- winebarrel
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-05-
|
11
|
+
date: 2016-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|