marathon-scooter 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6a0f104c9e674cce6b58e72b896572830e8900b
4
- data.tar.gz: 170ba99b351d7322f51c7d7943a9976e0c4abeb0
3
+ metadata.gz: 556dec10c2689fc60388bdbb32fc9863ea9acabb
4
+ data.tar.gz: 943e9705b1bd8697ac3a85e17e1a229848cf6652
5
5
  SHA512:
6
- metadata.gz: e04f8c6dc0fc9748393119f874331a6335b8ab061a4a14b29f791adb32de41f15af0ded82c71025442976959c9fa94f7d21f502c79de311c5ce40bdc3e197ebc
7
- data.tar.gz: 62ddf0235cd0b0e195b41e6795c2a37a4a27c4ff5611e10b808683940bb026d2728796bf4d54d6238242c68a8973ee39e19d76209ce7bcf098fd1dc48a5a71e7
6
+ metadata.gz: f37dfda3a318d28d1deadb30900a05a6ecd031ab583ff833b5281e45d1626d8977a97026e7fb8e78730fdac59e36eaa09c5e92340b2723a07c66faa03bfa95d4
7
+ data.tar.gz: 58ccf7389648a45fb6f2f93a96be13933c322adef54a5538410563c1eb1c12afc1006e65bb147b68b959eaa12db0bbb997a403e92a2c8d2dd9683f16ac3a1a68
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.3 - 2015-12-11
2
+
3
+ * Fixed a bug where certain exception cases were calling a function that did not exist.
4
+
1
5
  ## 0.1.2 - 2015-09-11
2
6
 
3
7
  * Added exception handling around `info` command.
@@ -20,7 +20,7 @@ module Scooter
20
20
  begin
21
21
  config = JSON.parse(IO.read(f))
22
22
  rescue Exception => e
23
- Scooter.ui.warning("Error parsing #{f}. #{e}")
23
+ Scooter.ui.warn("Error parsing #{f}. #{e}")
24
24
  next
25
25
  end
26
26
 
@@ -19,7 +19,7 @@ module Scooter
19
19
  begin
20
20
  config = JSON.parse(IO.read(f))
21
21
  rescue Exception => e
22
- Scooter.ui.warning("Error parsing #{f}. #{e}")
22
+ Scooter.ui.warn("Error parsing #{f}. #{e}")
23
23
  next
24
24
  end
25
25
 
@@ -62,7 +62,7 @@ module Scooter
62
62
  # This is a NO-OP
63
63
  end
64
64
  else
65
- Scooter.ui.warning("Unknown file extension for #{f}. Ignorning file.")
65
+ Scooter.ui.warn("Unknown file extension for #{f}. Ignorning file.")
66
66
  end
67
67
  end
68
68
 
@@ -26,7 +26,7 @@ module Scooter
26
26
  app.write_to_file(f)
27
27
 
28
28
  rescue Exception => e
29
- Scooter.ui.warning("Error parsing #{f}. #{e}")
29
+ Scooter.ui.warn("Error parsing #{f}. #{e}")
30
30
  next
31
31
  end
32
32
  end
@@ -6,7 +6,7 @@ module Scooter
6
6
  module Version
7
7
  MAJOR = 0
8
8
  MINOR = 1
9
- PATCH = 2
9
+ PATCH = 3
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.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yieldbot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-11 00:00:00.000000000 Z
11
+ date: 2015-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize