marathon-scooter 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a9e6da40cf705b812b2eda984cb2d7f11c7c7fe
4
- data.tar.gz: 60b3b689dbded24a6133867de8c2382a9d57e798
3
+ metadata.gz: b9188789d70a2e520dfdfe0cbf5570b640a70ed8
4
+ data.tar.gz: 703261162dc2b6e0e1bc4878721e91e24f213100
5
5
  SHA512:
6
- metadata.gz: b92136c7742d8935ce94dcd5b9a111926bffc2309041e2cada4580a636dbb7e69748a477b0013e3676b1ca2c07fe5b51799a1031426ad6b16879664458999056
7
- data.tar.gz: 8806ead8554859080f7b660bda1c583548badfa3b5144590fa4db162200cbd7e0ca580ede6a96f46961cb7257211dfafee22d6531143fe09c2a7ee45a830e279
6
+ metadata.gz: 23e461ccebde469721904b1e85588f637602ffd173401d6cb433ea6cdfddb58dc7f2d59baf55c5aa3a36445cf40115a5dffd57143dbdb57f898ceccaba31e3ef
7
+ data.tar.gz: 732af951b9b09d76ab579f2877d059121df787fbd5e61a0b53ae61ec99956d4e83df7fcd11e35bf28d974b8cd60cff2abf47f60485d87736e5dc6269c35d6e1b
data/CHANGELOG.md CHANGED
@@ -1 +1,5 @@
1
+ ## 0.1.1 - 2015-09-03
2
+
3
+ * Fixed `clean` bug with JSON files that do not include a leading slash for the application id.
4
+
1
5
  ## 0.1.0 -- Initial Public Release
@@ -24,11 +24,11 @@ module Scooter
24
24
  next
25
25
  end
26
26
 
27
- local_ids << config['id']
27
+ # Prefix with a leading slash if missing
28
+ local_ids << (config['id'].start_with?('/') ? config['id'] : "/#{config['id']}")
28
29
  end
29
30
 
30
- # Iterate a
31
- apps = ::Marathon::App.list
31
+ # Iterate the apps
32
32
  ::Marathon::App.list.each do |app|
33
33
 
34
34
  next if local_ids.include? app.id
@@ -6,7 +6,7 @@ module Scooter
6
6
  module Version
7
7
  MAJOR = 0
8
8
  MINOR = 1
9
- PATCH = 0
9
+ PATCH = 1
10
10
 
11
11
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: marathon-scooter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yieldbot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-26 00:00:00.000000000 Z
11
+ date: 2015-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize