awesome-cli 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +1 -0
- data/awesome-cli.gemspec +25 -1
- data/lib/awesome-cli/version.rb +1 -1
- metadata +9 -4
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm use 1.9.3@awesome-cli --create
|
data/awesome-cli.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Awesome::Cli::VERSION
|
8
8
|
s.authors = ["David Bryant Copeland"]
|
9
9
|
s.email = ["davetron5000@gmail.com"]
|
10
|
-
s.homepage = ""
|
10
|
+
s.homepage = "http://pragprog.com/book/dccar/build-awesome-command-line-applications-in-ruby"
|
11
11
|
s.summary = %q{The gem for Build Awesome Command-Line Applications with Ruby}
|
12
12
|
s.description = %q{The gem for Build Awesome Command-Line Applications with Ruby}
|
13
13
|
|
@@ -17,6 +17,30 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
19
|
s.require_paths = ["lib"]
|
20
|
+
s.post_install_message = "
|
21
|
+
|
22
|
+
--------------------
|
23
|
+
|
24
|
+
Thanks for watching 'Shelly Takes a Stroll' and hopefully
|
25
|
+
buy my new book:
|
26
|
+
|
27
|
+
Build Awesome Command-Line Applications with Ruby
|
28
|
+
|
29
|
+
by
|
30
|
+
|
31
|
+
David Bryant Copeland
|
32
|
+
|
33
|
+
You can buy (and preview) it at:
|
34
|
+
|
35
|
+
http://bit.ly/clibook
|
36
|
+
|
37
|
+
Thanks!
|
38
|
+
|
39
|
+
- David Bryant Copeland
|
40
|
+
|
41
|
+
--------------------
|
42
|
+
"
|
43
|
+
|
20
44
|
|
21
45
|
# specify any dependencies here; for example:
|
22
46
|
# s.add_development_dependency "rspec"
|
data/lib/awesome-cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: awesome-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
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-03-
|
12
|
+
date: 2012-03-19 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: The gem for Build Awesome Command-Line Applications with Ruby
|
15
15
|
email:
|
@@ -19,14 +19,19 @@ extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
21
|
- .gitignore
|
22
|
+
- .rvmrc
|
22
23
|
- Gemfile
|
23
24
|
- Rakefile
|
24
25
|
- awesome-cli.gemspec
|
25
26
|
- lib/awesome-cli.rb
|
26
27
|
- lib/awesome-cli/version.rb
|
27
|
-
homepage:
|
28
|
+
homepage: http://pragprog.com/book/dccar/build-awesome-command-line-applications-in-ruby
|
28
29
|
licenses: []
|
29
|
-
post_install_message:
|
30
|
+
post_install_message: ! "\n \n--------------------\n\nThanks for watching 'Shelly
|
31
|
+
Takes a Stroll' and hopefully\nbuy my new book:\n\nBuild Awesome Command-Line Applications
|
32
|
+
with Ruby \n\n by\n\n David Bryant Copeland\n\nYou
|
33
|
+
can buy (and preview) it at:\n\nhttp://bit.ly/clibook\n\nThanks!\n\n- David Bryant
|
34
|
+
Copeland\n\n--------------------\n"
|
30
35
|
rdoc_options: []
|
31
36
|
require_paths:
|
32
37
|
- lib
|