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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f84c08846f81a7725ead61afcb34b819fe3105bd
4
- data.tar.gz: c2b3165c1d8e1b11e81270551a8de65b05ecf489
3
+ metadata.gz: 8fb28b6385abde758d7e8e003e52355f35df2a9b
4
+ data.tar.gz: 0914b9866173e2e4022dd2139891fc9cac112fc6
5
5
  SHA512:
6
- metadata.gz: a6cd95305aa60798da6747a3d5a934aa4e222e865a821d214967b06f4f5813b9287a0588b001c442a82811d97e6f7f31c63bc964361c80db6f198cac6ab873d1
7
- data.tar.gz: 680ced7a452c1a6d615d1271ebbf5830360be7ecda04591ceefef637fff11cead212c5377437ccb7dcdad6e65382d1e6a8417fbbe082849d30492eede26ff19f
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"
@@ -1,3 +1,3 @@
1
1
  module Chsource
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chsource
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hao Wei