downrightnow 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +24 -0
- data/lib/downrightnow.rb +1 -1
- data/lib/downrightnow/util/command_line.rb +2 -2
- metadata +7 -6
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
DownRightNow CLI and Ruby API
|
2
|
+
=============================
|
3
|
+
|
4
|
+
This is an unofficial gem and in no way connected with DownRightNow.com.
|
5
|
+
|
6
|
+
Setup
|
7
|
+
-----
|
8
|
+
gem install downrightnow
|
9
|
+
|
10
|
+
Hacking
|
11
|
+
-------
|
12
|
+
Please fork and create a topical branch similar to yournickname-feature-applies_to_version.
|
13
|
+
|
14
|
+
Issues
|
15
|
+
------
|
16
|
+
Use the github issue tracker.
|
17
|
+
|
18
|
+
License
|
19
|
+
-------
|
20
|
+
|
21
|
+
Released under the [MIT license](http://www.opensource.org/licenses/mit-license.php).
|
22
|
+
|
23
|
+
Created by Barry Allard
|
24
|
+
|
data/lib/downrightnow.rb
CHANGED
@@ -7,9 +7,9 @@ module DownRightNow
|
|
7
7
|
def exec
|
8
8
|
begin
|
9
9
|
opts = Trollop::options do
|
10
|
-
version "DownRightNow (tm) unofficial ruby utility #{version} (c) 2011 Barry Allard"
|
10
|
+
version "DownRightNow (tm) unofficial ruby utility #{::DownRightNow.version} (c) 2011 Barry Allard"
|
11
11
|
banner <<-EOS
|
12
|
-
DownRightNow (tm) unofficial ruby utility #{version} (c) 2011 Barry Allard
|
12
|
+
DownRightNow (tm) unofficial ruby utility #{::DownRightNow.version} (c) 2011 Barry Allard
|
13
13
|
|
14
14
|
EOS
|
15
15
|
opt :verbose, "Verbose display", :default => false
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: downrightnow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-10-
|
12
|
+
date: 2011-10-16 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
16
|
-
requirement: &
|
16
|
+
requirement: &70200474014860 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 1.4.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70200474014860
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: trollop
|
27
|
-
requirement: &
|
27
|
+
requirement: &70200474013160 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '1.16'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70200474013160
|
36
36
|
description: See http://downrightnow.com
|
37
37
|
email: barry@barryallard.name
|
38
38
|
executables:
|
@@ -44,6 +44,7 @@ files:
|
|
44
44
|
- Gemfile
|
45
45
|
- Gemfile.lock
|
46
46
|
- LICENSE
|
47
|
+
- README.md
|
47
48
|
- bin/downrightnow
|
48
49
|
- downrightnow.gemspec
|
49
50
|
- lib/downrightnow.rb
|