methadone 1.2.3 → 1.2.4
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.
- data/.travis.yml +0 -1
- data/CHANGES.md +7 -0
- data/README.rdoc +4 -3
- data/bin/methadone +1 -1
- data/lib/methadone/version.rb +1 -1
- metadata +9 -3
data/.travis.yml
CHANGED
data/CHANGES.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v.1.2.4 - Dec 26, 2012
|
4
|
+
|
5
|
+
* Fix for my fix on apps with dashes in their name (see [59], thanks to [@terryfinn]
|
6
|
+
|
7
|
+
[@terryfinn]: https://github.com/terryfinn
|
8
|
+
[59]: https://github.com/davetron5000/methadone/pull/59
|
9
|
+
|
3
10
|
## v.1.2.3 - Dec 8, 2012
|
4
11
|
|
5
12
|
* Can create an app with a dash in its name (See [55])
|
data/README.rdoc
CHANGED
@@ -31,14 +31,15 @@ http://a1.mzstatic.com/us/r30/Publication/v4/2c/f7/90/2cf7902f-f709-9125-c73d-87
|
|
31
31
|
|
32
32
|
== Platforms
|
33
33
|
|
34
|
-
*
|
34
|
+
* The build runs on Travis for:
|
35
35
|
* MRI Ruby 1.8.7
|
36
36
|
* MRI Ruby 1.9.2
|
37
37
|
* MRI Ruby 1.9.3
|
38
|
-
* MRI Ruby Head
|
39
38
|
* RBX
|
40
39
|
* REE
|
41
|
-
*
|
40
|
+
* JRuby in both 1.8 and 1.9 mode
|
41
|
+
|
42
|
+
It should work on 2.0.0 but there's a weird bundler issue where some of the aruba tests fail in odd ways.
|
42
43
|
|
43
44
|
== Bootstrapping a new CLI App
|
44
45
|
|
data/bin/methadone
CHANGED
@@ -16,7 +16,7 @@ main do |app_name|
|
|
16
16
|
using_readme = options[:readme]
|
17
17
|
|
18
18
|
gemname = File.basename(app_name)
|
19
|
-
module_name = gemname.split(
|
19
|
+
module_name = gemname.split(/-/).map(&:capitalize).collect{ |segment| segment.split(/_/).map(&:capitalize).join('') }.join('::')
|
20
20
|
|
21
21
|
debug "Creating project for gem #{gemname}"
|
22
22
|
|
data/lib/methadone/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: methadone
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-26 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -324,15 +324,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
324
324
|
- - ! '>='
|
325
325
|
- !ruby/object:Gem::Version
|
326
326
|
version: '0'
|
327
|
+
segments:
|
328
|
+
- 0
|
329
|
+
hash: 2310702819927979182
|
327
330
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
328
331
|
none: false
|
329
332
|
requirements:
|
330
333
|
- - ! '>='
|
331
334
|
- !ruby/object:Gem::Version
|
332
335
|
version: '0'
|
336
|
+
segments:
|
337
|
+
- 0
|
338
|
+
hash: 2310702819927979182
|
333
339
|
requirements: []
|
334
340
|
rubyforge_project: methadone
|
335
|
-
rubygems_version: 1.8.
|
341
|
+
rubygems_version: 1.8.23
|
336
342
|
signing_key:
|
337
343
|
specification_version: 3
|
338
344
|
summary: Kick the bash habit and start your command-line apps off right
|