chsource 0.0.4 → 0.0.5
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 +4 -4
- data/README.md +1 -9
- data/lib/chsource/cli.rb +4 -1
- data/lib/chsource/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fb28b6385abde758d7e8e003e52355f35df2a9b
|
4
|
+
data.tar.gz: 0914b9866173e2e4022dd2139891fc9cac112fc6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95aeb8827f8a51f0f4aa7b05e4e548c42a54a10716e824dd247a3ac0a636b08147e78e282d959b47bde7ff5a3c333219bedb92dc1969e8f02d529ea4d6450f88
|
7
|
+
data.tar.gz: d1682cdfc879370877682532413e7985ad197bc09507ab60fe727f0a386cc66b72f49b57cf857380065554ba98373cb4476405c3771671f7b0999fe5da5d2827
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Chsource
|
2
2
|
|
3
|
-
Change Gemfile to use 3rd party sources.
|
3
|
+
Change Gemfile to use 3rd party sources quickly.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -23,11 +23,3 @@ Options:
|
|
23
23
|
-v, --version Print the version
|
24
24
|
-h, --help Show this message
|
25
25
|
```
|
26
|
-
|
27
|
-
## Contributing
|
28
|
-
|
29
|
-
1. Fork it
|
30
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
32
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
-
5. Create new Pull Request
|
data/lib/chsource/cli.rb
CHANGED
@@ -4,8 +4,11 @@ require 'optparse'
|
|
4
4
|
|
5
5
|
module Chsource
|
6
6
|
module CLI
|
7
|
+
def self.invalid_input?
|
8
|
+
ARGV.size > 1 || !Chsource::Source.keys.include?(ARGV[0].to_sym)
|
9
|
+
end
|
7
10
|
def self.start(args)
|
8
|
-
ARGV << '-h' if ARGV.empty? && $stdin.tty?
|
11
|
+
ARGV << '-h' if ARGV.empty? && $stdin.tty? || invalid_input?
|
9
12
|
|
10
13
|
opts = OptionParser.new do |opts|
|
11
14
|
opts.banner = "Usage: chsource SOURCE"
|
data/lib/chsource/version.rb
CHANGED