skippy 0.5.0.a → 0.5.1.a

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
  SHA256:
3
- metadata.gz: caf9e8f9363445b164e56aacb76d61cdb1395532d6128dc173c6ac55900eae85
4
- data.tar.gz: c122744a1c428a3cb22e73e35f217603e81c931397f60878189ec1c6c0805699
3
+ metadata.gz: 4b5027ab23b2e38af2c0ac8fb2cc2f791e5719d25b5f2e3ea05ab90974a326f4
4
+ data.tar.gz: f4497bbd058f6478fbeb675921204f4ed635351a3fd2b3d01f5500ab1c872aee
5
5
  SHA512:
6
- metadata.gz: f837fa5d0d6b7dc18570ba8037ba1cb25373dad59daaf0433e56799468600c99e9dc0df2e579fb667eed4dfdd5c56065e1f23519a349be240944ad49211cbd42
7
- data.tar.gz: e022d61b5268000d120fb0226a996c665fbcc2f03a159c9d68b7defc959b31d8d791d58b234e8564b900aed08aef8c791131197e0c2bb13f333d4b8218492b5a
6
+ metadata.gz: 06f649ddef3a1cd1a8b21ed1a7ba9e1f518e03d491b5539bb1d0d0785a5016ec190a8b23f012928cd657beca2b11bfb114ceaa3b7e35bd414bbd9064140b4296
7
+ data.tar.gz: 3e50720776f25fc0a97ae4ca022cb039caf9d2d28acc81cd5b81edafd3d8d9b3119b0ef06c0d32530e96e874743479053f2ec1b8fe0704180d953d63ea30e954
data/lib/skippy/cli.rb CHANGED
@@ -100,11 +100,6 @@ class Skippy::CLI < Skippy::Command
100
100
  "#{$PROGRAM_NAME} " + command.formatted_usage(self, all, subcommand)
101
101
  end
102
102
 
103
- # Verbatim copy from Thor::Runner:
104
- def self.exit_on_failure?
105
- true
106
- end
107
-
108
103
  private
109
104
 
110
105
  # This is one of the places this runner differ from Thor::Runner. It will
@@ -11,5 +11,10 @@ module Skippy
11
11
  command.formatted_usage(self, true, subcommand).to_s
12
12
  end
13
13
 
14
+ def self.exit_on_failure?
15
+ # https://github.com/rails/thor/issues/244
16
+ true
17
+ end
18
+
14
19
  end
15
20
  end
data/lib/skippy/os/mac.rb CHANGED
@@ -7,7 +7,7 @@ class Skippy::OSMac < Skippy::OSCommon
7
7
 
8
8
  # @param [String] executable_path
9
9
  def launch_app(executable_path, *args)
10
- command = %(open -a "#{executable_path}")
10
+ command = +%(open -a "#{executable_path}")
11
11
  unless args.empty?
12
12
  command << " --args #{args.join(' ')}"
13
13
  end
data/lib/skippy/os/win.rb CHANGED
@@ -15,7 +15,7 @@ class Skippy::OSWin < Skippy::OSCommon
15
15
 
16
16
  # @param [String] executable_path
17
17
  def launch_app(executable_path, *args)
18
- command = %("#{executable_path}")
18
+ command = +%("#{executable_path}")
19
19
  unless args.empty?
20
20
  command << " #{args.join(' ')}"
21
21
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Skippy
4
4
 
5
- VERSION = '0.5.0.a'
5
+ VERSION = '0.5.1.a'
6
6
 
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skippy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0.a
4
+ version: 0.5.1.a
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Thomassen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-08 00:00:00.000000000 Z
11
+ date: 2021-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: git
@@ -255,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  - !ruby/object:Gem::Version
256
256
  version: 1.3.1
257
257
  requirements: []
258
- rubygems_version: 3.2.15
258
+ rubygems_version: 3.0.3
259
259
  signing_key:
260
260
  specification_version: 4
261
261
  summary: CLI development tool for SketchUp extensions.