muxoro 0.0.1pre4 → 0.0.1pre5

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: ec962b08c91c7b1305d076ee7063aa6be2c43312
4
- data.tar.gz: 2fc69ca3d563a9d25cdc2f027f079769ad757418
3
+ metadata.gz: d405786b8396de09605746907c6890ef172a6cd5
4
+ data.tar.gz: 15b0d1c4dd825c3b764dfaaebe15c8441b1047a7
5
5
  SHA512:
6
- metadata.gz: 74aae7dcb904ec2a02709dda74366fe0e71e66340dc3c19f012f12a0ef774b02f57257f2b2716b6d613587e96013f8a3c4f245424d794543505bc080628e492d
7
- data.tar.gz: 125ecd2cc182d105df31bc21eb6a3d8b276b2a63f16d930a1e0dfdb9b848bd473f95ffaaaa0f44772ded541b6f56a12dd0eb8eeb879f19b84bd22bf83a258dd6
6
+ metadata.gz: 710028d54fa4adc95a625f3ff75f3b0a26f0c7e07b7dc3b10015f259236bbaf1cf0acb3bebf01c3231ca843256eba7bed27e68259a07831bfbd582f5a4c56ec1
7
+ data.tar.gz: dc91f55f32951501930e78f99cf283f62e26edcc7c3ecfad0b9dc198536b5d38013b10f9940d8b2b833c7008cc4dd5d8b7e2d460c381823b5dfd503e4b2f7ecd
data/bin/muxoro CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- ARGV.unshift 'start' if ARGV.first != 'start' && ARGV.first != 'stop'
3
+ args = ARGV.dup
4
+ args.unshift 'start' if args.first != 'start' && args.first != 'stop'
4
5
 
5
6
 
6
7
  $:.unshift File.expand_path '../../lib', __FILE__
@@ -8,7 +9,7 @@ $:.unshift File.expand_path '../../lib', __FILE__
8
9
  require 'muxoro/cli'
9
10
  require 'daemons'
10
11
 
11
- muxoro = Muxoro::CLI.new.init( ARGV[1..-1] )
12
+ muxoro = Muxoro::CLI.new.init( args[1..-1] )
12
13
  reset_session = -> {
13
14
  muxoro.reset_sessions
14
15
  }
data/lib/muxoro/cli.rb CHANGED
@@ -24,6 +24,7 @@ module Muxoro
24
24
 
25
25
  if options.help
26
26
  puts 'muxoro [options]'
27
+ puts "version: #{Muxoro::VERSION}"
27
28
  return
28
29
  end
29
30
  run!
@@ -1,3 +1,3 @@
1
1
  module Muxoro
2
- VERSION = '0.0.1pre4'
2
+ VERSION = '0.0.1pre5'
3
3
  end # module Muxoro
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muxoro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1pre4
4
+ version: 0.0.1pre5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Dober
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-11 00:00:00.000000000 Z
11
+ date: 2014-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lab42_options