methadone 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/CHANGES.md +4 -0
- data/README.rdoc +6 -5
- data/Rakefile +48 -4
- data/lib/methadone/cucumber.rb +21 -21
- data/lib/methadone/version.rb +1 -1
- data/methadone.gemspec +1 -0
- metadata +337 -236
data/.gitignore
CHANGED
data/CHANGES.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v1.2.1 - Jun 10, 2012, 3:41 PM
|
4
|
+
|
5
|
+
* Slightly loosen what passes for a one-line description of the app, courtesy @jredville
|
6
|
+
|
3
7
|
## v1.2.0 - May 21, 2012, 11:05 PM
|
4
8
|
|
5
9
|
* Better handling of `open4` dependency when you don't install it and you don't use it.
|
data/README.rdoc
CHANGED
@@ -25,7 +25,7 @@ http://a1.mzstatic.com/us/r30/Publication/v4/2c/f7/90/2cf7902f-f709-9125-c73d-87
|
|
25
25
|
== Links
|
26
26
|
|
27
27
|
* {Source on Github}[http://github.com/davetron5000/methadone]
|
28
|
-
* RDoc[http://
|
28
|
+
* RDoc[http://davetron5000.github.com/methadone/rdoc]
|
29
29
|
|
30
30
|
== Platforms
|
31
31
|
|
@@ -47,6 +47,7 @@ The +methadone+ command-line app will bootstrap a new command-line app, setting
|
|
47
47
|
--force Overwrite files if they exist
|
48
48
|
$ methadone newgem
|
49
49
|
$ cd newgem
|
50
|
+
$ bundle
|
50
51
|
$ rake
|
51
52
|
1 tests, 1 assertions, 0 failures, 0 errors, 0 skips
|
52
53
|
1 scenario (1 passed)
|
@@ -82,7 +83,7 @@ A canonical <tt>OptionParser</tt> driven app has a few problems with it structur
|
|
82
83
|
* Verbose to use +opts.on+ just to set a value in a +Hash+
|
83
84
|
* No exception handling - you have to explicitly call <tt>exit</tt> and/or let exceptions' stack traces leak through.
|
84
85
|
|
85
|
-
Methadone provides Methadone::Main to help make a clean and easy-to-maintain <tt>bin</tt> file. See the {rdoc}[http://
|
86
|
+
Methadone provides Methadone::Main to help make a clean and easy-to-maintain <tt>bin</tt> file. See the {rdoc}[http://davetron5000.github.com/methadone/rdoc/classes/Methadone/Main.html] for an example, and see {my blog}[http://www.naildrivin5.com/blog/2011/12/19/methadone-the-awesome-cli-library.html] on the derivation of this module.
|
86
87
|
|
87
88
|
== Wrapper for running external commands with good logging
|
88
89
|
|
@@ -106,7 +107,7 @@ Enter Methadone::SH
|
|
106
107
|
#
|
107
108
|
# there's a LOT MORE
|
108
109
|
|
109
|
-
See the {rdoc}[http://
|
110
|
+
See the {rdoc}[http://davetron5000.github.com/methadone/rdoc/classes/Methadone/SH.html] for more detailed examples and usage.
|
110
111
|
|
111
112
|
This isn't a replacement for Open3 or ChildProcess, but a way to easily "do the right thing" for most cases.
|
112
113
|
|
@@ -122,7 +123,7 @@ Methadone::CLILogger is designed to handle this. It's a proper subclass of Ruby
|
|
122
123
|
* When these are redirected to a file, the log messages are properly date/time stamped as you'd expect
|
123
124
|
* You can mix-in Methadone::CLILogging to get access to a global logger instances without resorting to an explicit global variable
|
124
125
|
|
125
|
-
See {CLILogger's rdoc}[http://
|
126
|
+
See {CLILogger's rdoc}[http://davetron5000.github.com/methadone/rdoc/classes/Methadone/CLILogger.html] and then {CLILogging's}[http://davetron5000.github.com/methadone/rdoc/classes/Methadone/CLILogging.html] for more.
|
126
127
|
|
127
128
|
|
128
129
|
Currently, there are classes the assist in directing output logger-style to the right place; basically ensuring that errors go to +STDERR+ and everything else goes to +STDOUT+. All of this is, of course, configurable
|
@@ -147,7 +148,7 @@ Here's an example from methadone's own tests:
|
|
147
148
|
|app_name|which is required|
|
148
149
|
|dir_name|which is optional|
|
149
150
|
|
150
|
-
See Methadone::Cucumber or its {rdoc}[http://
|
151
|
+
See Methadone::Cucumber or its {rdoc}[http://davetron5000.github.com/methadone/rdoc/classes/Methadone/Cucumber.html] for a list of all the steps provided.
|
151
152
|
|
152
153
|
== Contributing
|
153
154
|
|
data/Rakefile
CHANGED
@@ -1,8 +1,7 @@
|
|
1
|
+
require 'sdoc'
|
1
2
|
require 'bundler'
|
2
3
|
require 'rake/clean'
|
3
4
|
require 'rake/testtask'
|
4
|
-
gem 'rdoc' # I need to use the installed RDoc gem, not what comes with the system
|
5
|
-
require 'rdoc/task'
|
6
5
|
require 'cucumber'
|
7
6
|
require 'cucumber/rake/task'
|
8
7
|
|
@@ -19,13 +18,58 @@ Rake::TestTask.new do |t|
|
|
19
18
|
end
|
20
19
|
|
21
20
|
desc 'build rdoc'
|
22
|
-
|
21
|
+
task :rdoc => [:build_rdoc, :hack_css]
|
22
|
+
RDoc::Task.new(:build_rdoc) do |rd|
|
23
23
|
rd.main = "README.rdoc"
|
24
|
-
rd.
|
24
|
+
rd.options << '-f' << 'sdoc'
|
25
|
+
rd.template = 'direct'
|
25
26
|
rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
|
26
27
|
rd.title = 'Methadone - Power Up your Command Line Apps'
|
27
28
|
end
|
29
|
+
CLOBBER << 'html'
|
28
30
|
|
31
|
+
FONT_FIX = {
|
32
|
+
"0.82em" => "16px",
|
33
|
+
"0.833em" => "16px",
|
34
|
+
"0.85em" => "16px",
|
35
|
+
"1.15em" => "20px",
|
36
|
+
"1.1em" => "20px",
|
37
|
+
"1.2em" => "20px",
|
38
|
+
"1.4em" => "24px",
|
39
|
+
"1.5em" => "24px",
|
40
|
+
"1.6em" => "32px",
|
41
|
+
"1em" => "16px",
|
42
|
+
"2.1em" => "38px",
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
task :hack_css do
|
47
|
+
maincss = File.open('html/css/main.css').readlines
|
48
|
+
File.open('html/css/main.css','w') do |file|
|
49
|
+
file.puts '@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700);'
|
50
|
+
maincss.each do |line|
|
51
|
+
if line.strip == 'font-family: "Helvetica Neue", Arial, sans-serif;'
|
52
|
+
file.puts 'font-family: Lato, "Helvetica Neue", Arial, sans-serif;'
|
53
|
+
elsif line.strip == 'font-family: monospace;'
|
54
|
+
file.puts 'font-family: Monaco, monospace;'
|
55
|
+
elsif line =~ /^pre\s*$/
|
56
|
+
file.puts "pre {
|
57
|
+
font-family: Monaco, monospace;
|
58
|
+
margin-bottom: 1em;
|
59
|
+
}
|
60
|
+
pre.original"
|
61
|
+
elsif line =~ /^\s*font-size:\s*(.*)\s*;/
|
62
|
+
if FONT_FIX[$1]
|
63
|
+
file.puts "font-size: #{FONT_FIX[$1]};"
|
64
|
+
else
|
65
|
+
file.puts line.chomp
|
66
|
+
end
|
67
|
+
else
|
68
|
+
file.puts line.chomp
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
29
73
|
if RUBY_PLATFORM == 'java'
|
30
74
|
task :features do
|
31
75
|
puts "Aruba doesn't work on JRuby; cannot run features"
|
data/lib/methadone/cucumber.rb
CHANGED
@@ -3,49 +3,49 @@ module Methadone
|
|
3
3
|
# gain access to the steps defined in this file. They provide you with the following:
|
4
4
|
#
|
5
5
|
# * Run <tt>command_to_run --help</tt> using aruba
|
6
|
-
#
|
6
|
+
#
|
7
7
|
# When I get help for "command_to_run"
|
8
|
-
#
|
8
|
+
#
|
9
9
|
# * Make sure that each option shows up in the help and has *some* sort of documentation
|
10
|
-
#
|
10
|
+
#
|
11
11
|
# Then the following options should be documented:
|
12
12
|
# |--force|
|
13
13
|
# |-x |
|
14
|
-
#
|
14
|
+
#
|
15
15
|
# * Check an individual option for documentation:
|
16
|
-
#
|
16
|
+
#
|
17
17
|
# Then the option "--force" should be documented
|
18
|
-
#
|
18
|
+
#
|
19
19
|
# * Checks that the help has a proper usage banner
|
20
|
-
#
|
20
|
+
#
|
21
21
|
# Then the banner should be present
|
22
|
-
#
|
22
|
+
#
|
23
23
|
# * Checks that the banner includes the version
|
24
|
-
#
|
24
|
+
#
|
25
25
|
# Then the banner should include the version
|
26
|
-
#
|
26
|
+
#
|
27
27
|
# * Checks that the usage banner indicates it takes options via <tt>[options]</tt>
|
28
|
-
#
|
28
|
+
#
|
29
29
|
# Then the banner should document that this app takes options
|
30
|
-
#
|
30
|
+
#
|
31
31
|
# * Do the opposite; check that you don't indicate options are accepted
|
32
|
-
#
|
32
|
+
#
|
33
33
|
# Then the banner should document that this app takes no options
|
34
|
-
#
|
34
|
+
#
|
35
35
|
# * Checks that the app's usage banner documents that its arguments are <tt>args</tt>
|
36
|
-
#
|
36
|
+
#
|
37
37
|
# Then the banner should document that this app's arguments are
|
38
38
|
# |foo|which is optional|
|
39
39
|
# |bar|which is required|
|
40
|
-
#
|
40
|
+
#
|
41
41
|
# * Do the opposite; check that your app doesn't take any arguments
|
42
|
-
#
|
42
|
+
#
|
43
43
|
# Then the banner should document that this app takes no arguments
|
44
|
-
#
|
44
|
+
#
|
45
45
|
# * Check for a usage description which occurs after the banner and a blank line
|
46
|
-
#
|
46
|
+
#
|
47
47
|
# Then there should be a one line summary of what the app does
|
48
|
-
#
|
48
|
+
#
|
49
49
|
module Cucumber
|
50
50
|
end
|
51
51
|
end
|
@@ -100,5 +100,5 @@ Then /^there should be a one line summary of what the app does$/ do
|
|
100
100
|
output_lines.should have_at_least(3).items
|
101
101
|
# [0] is our banner, which we've checked for
|
102
102
|
output_lines[1].should match(/^\s*$/)
|
103
|
-
output_lines[2].should match(/^\w
|
103
|
+
output_lines[2].should match(/^\w+\s+\w+/)
|
104
104
|
end
|
data/lib/methadone/version.rb
CHANGED
data/methadone.gemspec
CHANGED
metadata
CHANGED
@@ -1,285 +1,386 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: methadone
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.1
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 2
|
9
|
-
- 0
|
10
|
-
version: 1.2.0
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- davetron5000
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
21
|
-
version_requirements: &id001 !ruby/object:Gem::Requirement
|
22
|
-
none: false
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
hash: 3
|
27
|
-
segments:
|
28
|
-
- 0
|
29
|
-
version: "0"
|
30
|
-
prerelease: false
|
31
|
-
type: :runtime
|
12
|
+
date: 2012-06-10 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
32
15
|
name: bundler
|
33
|
-
requirement:
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
version_requirements: &id002 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
36
17
|
none: false
|
37
|
-
requirements:
|
38
|
-
- -
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
|
41
|
-
|
42
|
-
- 2
|
43
|
-
- 6
|
44
|
-
version: "2.6"
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
45
23
|
prerelease: false
|
46
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
47
31
|
name: rspec-expectations
|
48
|
-
requirement:
|
49
|
-
- !ruby/object:Gem::Dependency
|
50
|
-
version_requirements: &id003 !ruby/object:Gem::Requirement
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
51
33
|
none: false
|
52
|
-
requirements:
|
53
|
-
- -
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
|
56
|
-
segments:
|
57
|
-
- 0
|
58
|
-
version: "0"
|
59
|
-
prerelease: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '2.6'
|
60
38
|
type: :development
|
61
|
-
|
62
|
-
|
63
|
-
- !ruby/object:Gem::Dependency
|
64
|
-
version_requirements: &id004 !ruby/object:Gem::Requirement
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
41
|
none: false
|
66
|
-
requirements:
|
42
|
+
requirements:
|
67
43
|
- - ~>
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '2.6'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: rake
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
75
54
|
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
76
63
|
name: rdoc
|
77
|
-
requirement:
|
78
|
-
- !ruby/object:Gem::Dependency
|
79
|
-
version_requirements: &id005 !ruby/object:Gem::Requirement
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
80
65
|
none: false
|
81
|
-
requirements:
|
66
|
+
requirements:
|
82
67
|
- - ~>
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
|
85
|
-
segments:
|
86
|
-
- 1
|
87
|
-
- 1
|
88
|
-
- 1
|
89
|
-
version: 1.1.1
|
90
|
-
prerelease: false
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '3.9'
|
91
70
|
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '3.9'
|
78
|
+
- !ruby/object:Gem::Dependency
|
92
79
|
name: cucumber
|
93
|
-
requirement:
|
94
|
-
- !ruby/object:Gem::Dependency
|
95
|
-
version_requirements: &id006 !ruby/object:Gem::Requirement
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
96
81
|
none: false
|
97
|
-
requirements:
|
98
|
-
- -
|
99
|
-
- !ruby/object:Gem::Version
|
100
|
-
|
101
|
-
segments:
|
102
|
-
- 0
|
103
|
-
version: "0"
|
104
|
-
prerelease: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 1.1.1
|
105
86
|
type: :development
|
106
|
-
|
107
|
-
|
108
|
-
- !ruby/object:Gem::Dependency
|
109
|
-
version_requirements: &id007 !ruby/object:Gem::Requirement
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
89
|
none: false
|
111
|
-
requirements:
|
90
|
+
requirements:
|
112
91
|
- - ~>
|
113
|
-
- !ruby/object:Gem::Version
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.1.1
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: aruba
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
120
102
|
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
121
111
|
name: simplecov
|
122
|
-
requirement:
|
123
|
-
- !ruby/object:Gem::Dependency
|
124
|
-
version_requirements: &id008 !ruby/object:Gem::Requirement
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
125
113
|
none: false
|
126
|
-
requirements:
|
114
|
+
requirements:
|
127
115
|
- - ~>
|
128
|
-
- !ruby/object:Gem::Version
|
129
|
-
|
130
|
-
segments:
|
131
|
-
- 0
|
132
|
-
- 10
|
133
|
-
version: "0.10"
|
134
|
-
prerelease: false
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.5'
|
135
118
|
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0.5'
|
126
|
+
- !ruby/object:Gem::Dependency
|
136
127
|
name: clean_test
|
137
|
-
requirement:
|
138
|
-
- !ruby/object:Gem::Dependency
|
139
|
-
version_requirements: &id009 !ruby/object:Gem::Requirement
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
140
129
|
none: false
|
141
|
-
requirements:
|
142
|
-
- -
|
143
|
-
- !ruby/object:Gem::Version
|
144
|
-
|
145
|
-
segments:
|
146
|
-
- 0
|
147
|
-
version: "0"
|
148
|
-
prerelease: false
|
130
|
+
requirements:
|
131
|
+
- - ~>
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0.10'
|
149
134
|
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0.10'
|
142
|
+
- !ruby/object:Gem::Dependency
|
150
143
|
name: mocha
|
151
|
-
requirement:
|
152
|
-
|
153
|
-
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ! '>='
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: '0'
|
150
|
+
type: :development
|
151
|
+
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: sdoc
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
162
|
+
requirements:
|
163
|
+
- - ! '>='
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
170
|
+
requirements:
|
171
|
+
- - ! '>='
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
description: Methadone provides a lot of small but useful features for developing
|
175
|
+
a command-line app, including an opinionated bootstrapping process, some helpful
|
176
|
+
cucumber steps, and some classes to bridge logging and output into a simple, unified,
|
177
|
+
interface
|
178
|
+
email:
|
154
179
|
- davetron5000 at gmail.com
|
155
|
-
executables:
|
156
|
-
-
|
180
|
+
executables:
|
181
|
+
- !binary |-
|
182
|
+
bWV0aGFkb25l
|
157
183
|
extensions: []
|
158
|
-
|
159
184
|
extra_rdoc_files: []
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
-
|
164
|
-
|
165
|
-
-
|
166
|
-
|
167
|
-
-
|
168
|
-
|
169
|
-
-
|
170
|
-
|
171
|
-
-
|
172
|
-
|
173
|
-
-
|
174
|
-
|
175
|
-
-
|
176
|
-
|
177
|
-
-
|
178
|
-
|
179
|
-
-
|
180
|
-
|
181
|
-
-
|
182
|
-
|
183
|
-
-
|
184
|
-
|
185
|
-
-
|
186
|
-
|
187
|
-
-
|
188
|
-
|
189
|
-
-
|
190
|
-
|
191
|
-
-
|
192
|
-
|
193
|
-
-
|
194
|
-
|
195
|
-
-
|
196
|
-
|
197
|
-
-
|
198
|
-
|
199
|
-
-
|
200
|
-
|
201
|
-
-
|
202
|
-
|
203
|
-
-
|
204
|
-
|
205
|
-
-
|
206
|
-
|
207
|
-
-
|
208
|
-
|
209
|
-
-
|
210
|
-
|
211
|
-
-
|
212
|
-
|
213
|
-
-
|
214
|
-
|
215
|
-
-
|
216
|
-
|
217
|
-
-
|
218
|
-
|
219
|
-
-
|
220
|
-
|
221
|
-
-
|
222
|
-
|
223
|
-
-
|
224
|
-
|
185
|
+
files:
|
186
|
+
- !binary |-
|
187
|
+
LmdpdGlnbm9yZQ==
|
188
|
+
- !binary |-
|
189
|
+
LnJ2bXJj
|
190
|
+
- !binary |-
|
191
|
+
LnRyYXZpcy55bWw=
|
192
|
+
- !binary |-
|
193
|
+
Q0hBTkdFUy5tZA==
|
194
|
+
- !binary |-
|
195
|
+
R2VtZmlsZQ==
|
196
|
+
- !binary |-
|
197
|
+
TElDRU5TRS50eHQ=
|
198
|
+
- !binary |-
|
199
|
+
UkVBRE1FLnJkb2M=
|
200
|
+
- !binary |-
|
201
|
+
UmFrZWZpbGU=
|
202
|
+
- !binary |-
|
203
|
+
YmluL21ldGhhZG9uZQ==
|
204
|
+
- !binary |-
|
205
|
+
ZmVhdHVyZXMvYm9vdHN0cmFwLmZlYXR1cmU=
|
206
|
+
- !binary |-
|
207
|
+
ZmVhdHVyZXMvbGljZW5zZS5mZWF0dXJl
|
208
|
+
- !binary |-
|
209
|
+
ZmVhdHVyZXMvcmVhZG1lLmZlYXR1cmU=
|
210
|
+
- !binary |-
|
211
|
+
ZmVhdHVyZXMvcnNwZWNfc3VwcG9ydC5mZWF0dXJl
|
212
|
+
- !binary |-
|
213
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9ib290c3RyYXBfc3RlcHMucmI=
|
214
|
+
- !binary |-
|
215
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9saWNlbnNlX3N0ZXBzLnJi
|
216
|
+
- !binary |-
|
217
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9yZWFkbWVfc3RlcHMucmI=
|
218
|
+
- !binary |-
|
219
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy92ZXJzaW9uX3N0ZXBzLnJi
|
220
|
+
- !binary |-
|
221
|
+
ZmVhdHVyZXMvc3VwcG9ydC9lbnYucmI=
|
222
|
+
- !binary |-
|
223
|
+
ZmVhdHVyZXMvdmVyc2lvbi5mZWF0dXJl
|
224
|
+
- !binary |-
|
225
|
+
bGliL21ldGhhZG9uZS5yYg==
|
226
|
+
- !binary |-
|
227
|
+
bGliL21ldGhhZG9uZS9hcmd2X3BhcnNlci5yYg==
|
228
|
+
- !binary |-
|
229
|
+
bGliL21ldGhhZG9uZS9jbGkucmI=
|
230
|
+
- !binary |-
|
231
|
+
bGliL21ldGhhZG9uZS9jbGlfbG9nZ2VyLnJi
|
232
|
+
- !binary |-
|
233
|
+
bGliL21ldGhhZG9uZS9jbGlfbG9nZ2luZy5yYg==
|
234
|
+
- !binary |-
|
235
|
+
bGliL21ldGhhZG9uZS9jdWN1bWJlci5yYg==
|
236
|
+
- !binary |-
|
237
|
+
bGliL21ldGhhZG9uZS9lcnJvci5yYg==
|
238
|
+
- !binary |-
|
239
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvYmFzZS5yYg==
|
240
|
+
- !binary |-
|
241
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvanZtLnJi
|
242
|
+
- !binary |-
|
243
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvbXJpLnJi
|
244
|
+
- !binary |-
|
245
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvb3Blbl8zLnJi
|
246
|
+
- !binary |-
|
247
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvb3Blbl80LnJi
|
248
|
+
- !binary |-
|
249
|
+
bGliL21ldGhhZG9uZS9leGVjdXRpb25fc3RyYXRlZ3kvcmJ4X29wZW5fNC5y
|
250
|
+
Yg==
|
251
|
+
- !binary |-
|
252
|
+
bGliL21ldGhhZG9uZS9leGl0X25vdy5yYg==
|
253
|
+
- !binary |-
|
254
|
+
bGliL21ldGhhZG9uZS9tYWluLnJi
|
255
|
+
- !binary |-
|
256
|
+
bGliL21ldGhhZG9uZS9wcm9jZXNzX3N0YXR1cy5yYg==
|
257
|
+
- !binary |-
|
258
|
+
bGliL21ldGhhZG9uZS9zaC5yYg==
|
259
|
+
- !binary |-
|
260
|
+
bGliL21ldGhhZG9uZS92ZXJzaW9uLnJi
|
261
|
+
- !binary |-
|
262
|
+
bWV0aGFkb25lLmdlbXNwZWM=
|
263
|
+
- !binary |-
|
264
|
+
dGVtcGxhdGVzL2Z1bGwvLmdpdGlnbm9yZS5lcmI=
|
265
|
+
- !binary |-
|
266
|
+
dGVtcGxhdGVzL2Z1bGwvUkVBRE1FLnJkb2MuZXJi
|
267
|
+
- !binary |-
|
268
|
+
dGVtcGxhdGVzL2Z1bGwvUmFrZWZpbGUuZXJi
|
269
|
+
- !binary |-
|
270
|
+
dGVtcGxhdGVzL2Z1bGwvYXBhY2hlX0xJQ0VOU0UudHh0LmVyYg==
|
271
|
+
- !binary |-
|
272
|
+
dGVtcGxhdGVzL2Z1bGwvYmluL2V4ZWN1dGFibGUuZXJi
|
273
|
+
- !binary |-
|
274
|
+
dGVtcGxhdGVzL2Z1bGwvY3VzdG9tX0xJQ0VOU0UudHh0LmVyYg==
|
275
|
+
- !binary |-
|
276
|
+
dGVtcGxhdGVzL2Z1bGwvZmVhdHVyZXMvZXhlY3V0YWJsZS5mZWF0dXJlLmVy
|
277
|
+
Yg==
|
278
|
+
- !binary |-
|
279
|
+
dGVtcGxhdGVzL2Z1bGwvZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9leGVj
|
280
|
+
dXRhYmxlX3N0ZXBzLnJiLmVyYg==
|
281
|
+
- !binary |-
|
282
|
+
dGVtcGxhdGVzL2Z1bGwvZmVhdHVyZXMvc3VwcG9ydC9lbnYucmIuZXJi
|
283
|
+
- !binary |-
|
284
|
+
dGVtcGxhdGVzL2Z1bGwvbWl0X0xJQ0VOU0UudHh0LmVyYg==
|
285
|
+
- !binary |-
|
286
|
+
dGVtcGxhdGVzL3JzcGVjL3NwZWMvdGNfc29tZXRoaW5nX3NwZWMucmIuZXJi
|
287
|
+
- !binary |-
|
288
|
+
dGVtcGxhdGVzL3Rlc3RfdW5pdC90ZXN0L3RjX3NvbWV0aGluZy5yYi5lcmI=
|
289
|
+
- !binary |-
|
290
|
+
dGVzdC9iYXNlX3Rlc3QucmI=
|
291
|
+
- !binary |-
|
292
|
+
dGVzdC9jb21tYW5kX2Zvcl90ZXN0cy5yYg==
|
293
|
+
- !binary |-
|
294
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9iYXNlLnJi
|
295
|
+
- !binary |-
|
296
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9qdm0ucmI=
|
297
|
+
- !binary |-
|
298
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9tcmkucmI=
|
299
|
+
- !binary |-
|
300
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9vcGVuXzMucmI=
|
301
|
+
- !binary |-
|
302
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9vcGVuXzQucmI=
|
303
|
+
- !binary |-
|
304
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9yYnhfb3Blbl80LnJi
|
305
|
+
- !binary |-
|
306
|
+
dGVzdC90ZXN0X2NsaV9sb2dnZXIucmI=
|
307
|
+
- !binary |-
|
308
|
+
dGVzdC90ZXN0X2NsaV9sb2dnaW5nLnJi
|
309
|
+
- !binary |-
|
310
|
+
dGVzdC90ZXN0X2V4aXRfbm93LnJi
|
311
|
+
- !binary |-
|
312
|
+
dGVzdC90ZXN0X21haW4ucmI=
|
313
|
+
- !binary |-
|
314
|
+
dGVzdC90ZXN0X3NoLnJi
|
225
315
|
homepage: http://github.com/davetron5000/methadone
|
226
316
|
licenses: []
|
227
|
-
|
228
|
-
|
229
|
-
!!!!!!!!!!!!!!!!!!!!!!\n\n\
|
230
|
-
If you are on Ruby 1.8 or REE, you MUST\n\n\
|
231
|
-
gem install open4\n\n\
|
232
|
-
!!!!!!!!!!!!!!!!!!!!!!\n "
|
317
|
+
post_install_message: ! "\n\n!!!!!!!!!!!!!!!!!!!!!!\n\nIf you are on Ruby 1.8 or REE,
|
318
|
+
you MUST\n\ngem install open4\n\n!!!!!!!!!!!!!!!!!!!!!!\n "
|
233
319
|
rdoc_options: []
|
234
|
-
|
235
|
-
require_paths:
|
320
|
+
require_paths:
|
236
321
|
- lib
|
237
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
322
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
238
323
|
none: false
|
239
|
-
requirements:
|
240
|
-
- -
|
241
|
-
- !ruby/object:Gem::Version
|
242
|
-
|
243
|
-
|
244
|
-
- 0
|
245
|
-
version: "0"
|
246
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
324
|
+
requirements:
|
325
|
+
- - ! '>='
|
326
|
+
- !ruby/object:Gem::Version
|
327
|
+
version: '0'
|
328
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
247
329
|
none: false
|
248
|
-
requirements:
|
249
|
-
- -
|
250
|
-
- !ruby/object:Gem::Version
|
251
|
-
|
252
|
-
segments:
|
253
|
-
- 0
|
254
|
-
version: "0"
|
330
|
+
requirements:
|
331
|
+
- - ! '>='
|
332
|
+
- !ruby/object:Gem::Version
|
333
|
+
version: '0'
|
255
334
|
requirements: []
|
256
|
-
|
257
335
|
rubyforge_project: methadone
|
258
336
|
rubygems_version: 1.8.24
|
259
337
|
signing_key:
|
260
338
|
specification_version: 3
|
261
339
|
summary: Kick the bash habit and start your command-line apps off right
|
262
|
-
test_files:
|
263
|
-
-
|
264
|
-
|
265
|
-
-
|
266
|
-
|
267
|
-
-
|
268
|
-
|
269
|
-
-
|
270
|
-
|
271
|
-
-
|
272
|
-
|
273
|
-
-
|
274
|
-
|
275
|
-
-
|
276
|
-
|
277
|
-
-
|
278
|
-
|
279
|
-
-
|
280
|
-
|
281
|
-
-
|
282
|
-
|
283
|
-
-
|
284
|
-
|
285
|
-
-
|
340
|
+
test_files:
|
341
|
+
- !binary |-
|
342
|
+
ZmVhdHVyZXMvYm9vdHN0cmFwLmZlYXR1cmU=
|
343
|
+
- !binary |-
|
344
|
+
ZmVhdHVyZXMvbGljZW5zZS5mZWF0dXJl
|
345
|
+
- !binary |-
|
346
|
+
ZmVhdHVyZXMvcmVhZG1lLmZlYXR1cmU=
|
347
|
+
- !binary |-
|
348
|
+
ZmVhdHVyZXMvcnNwZWNfc3VwcG9ydC5mZWF0dXJl
|
349
|
+
- !binary |-
|
350
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9ib290c3RyYXBfc3RlcHMucmI=
|
351
|
+
- !binary |-
|
352
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9saWNlbnNlX3N0ZXBzLnJi
|
353
|
+
- !binary |-
|
354
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9yZWFkbWVfc3RlcHMucmI=
|
355
|
+
- !binary |-
|
356
|
+
ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy92ZXJzaW9uX3N0ZXBzLnJi
|
357
|
+
- !binary |-
|
358
|
+
ZmVhdHVyZXMvc3VwcG9ydC9lbnYucmI=
|
359
|
+
- !binary |-
|
360
|
+
ZmVhdHVyZXMvdmVyc2lvbi5mZWF0dXJl
|
361
|
+
- !binary |-
|
362
|
+
dGVzdC9iYXNlX3Rlc3QucmI=
|
363
|
+
- !binary |-
|
364
|
+
dGVzdC9jb21tYW5kX2Zvcl90ZXN0cy5yYg==
|
365
|
+
- !binary |-
|
366
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9iYXNlLnJi
|
367
|
+
- !binary |-
|
368
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9qdm0ucmI=
|
369
|
+
- !binary |-
|
370
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9tcmkucmI=
|
371
|
+
- !binary |-
|
372
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9vcGVuXzMucmI=
|
373
|
+
- !binary |-
|
374
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9vcGVuXzQucmI=
|
375
|
+
- !binary |-
|
376
|
+
dGVzdC9leGVjdXRpb25fc3RyYXRlZ3kvdGVzdF9yYnhfb3Blbl80LnJi
|
377
|
+
- !binary |-
|
378
|
+
dGVzdC90ZXN0X2NsaV9sb2dnZXIucmI=
|
379
|
+
- !binary |-
|
380
|
+
dGVzdC90ZXN0X2NsaV9sb2dnaW5nLnJi
|
381
|
+
- !binary |-
|
382
|
+
dGVzdC90ZXN0X2V4aXRfbm93LnJi
|
383
|
+
- !binary |-
|
384
|
+
dGVzdC90ZXN0X21haW4ucmI=
|
385
|
+
- !binary |-
|
386
|
+
dGVzdC90ZXN0X3NoLnJi
|