chsource 0.0.2 → 0.0.3

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: 9ec1b441656d783669091f7dcb2cbee0d5832976
4
- data.tar.gz: 1df52bd8c620e21638cd8b403801cb8ec50d513f
3
+ metadata.gz: d3b9a8413e6c7a81bcb8f0b21f9c11889fdee3f7
4
+ data.tar.gz: 6bef9dd833af45bdd6c84ba10c0040edbf97de7b
5
5
  SHA512:
6
- metadata.gz: 518a3df9b02df4c9ff6f5991098a7e2bb1a8e865bddd80b02bb1807b772fa21c68470f889de97e793f9daced5e948604be1cfefbbfe367a1a1eddac5751caea8
7
- data.tar.gz: 1dfd51a2ddebe945c735ab8aa060e1d6a1ce4e9766d7a66bb497eb0b81b19e26fcff52683fdf1e1c0af6aa22640c5bcd3e676adfb8202d803adb3427c4463d13
6
+ metadata.gz: 460eba1c2441e9c3ea6ea597218184d188b1640881e56c96a82378a3dceda2a1cb3c188233588906a73d92e308363fffdd021fce86542e8e3e998de07712347d
7
+ data.tar.gz: 18a1012a20da25ae5994c22d7bd13526d2dfcaa08850ef69b19f6b54c5015f25034527bde5a9082bcf06fbda77aab50d3923b57bf1ed976601bf0e292d409d41
data/chsource.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Chsource::VERSION
9
9
  spec.authors = ["Hao Wei"]
10
10
  spec.email = ["imwillmouse@gmail.com"]
11
- spec.description = %q{change Gemfile's source to 3rd party quickly}
11
+ spec.description = %q{chsource make you change Gemfile's source quickly}
12
12
  spec.summary = %q{change Gemfile's source to 3rd party quickly}
13
13
  spec.homepage = "http://github.com/weih/chsource"
14
14
  spec.license = "MIT"
@@ -1,5 +1,6 @@
1
1
  module Chsource
2
2
  class Chsource
3
+ Gemfile = 'Gemfile'
3
4
  Source = {
4
5
  rubygems: "source 'http://rubygems.org'",
5
6
  taobao: "source 'http://ruby.taobao.org'",
@@ -7,19 +8,30 @@ module Chsource
7
8
  tsinghua: "source 'http://mirrors.tuna.tsinghua.edu.cn/rubygems'"
8
9
  }
9
10
 
10
- def self.change_source(new_source)
11
- @text = File.read('Gemfile')
12
- @new_source = Source[new_source.to_sym]
11
+ class << self
12
+ def change_source(new_source)
13
+ @text = File.read(Gemfile)
14
+ @new_source = Source[new_source.to_sym]
13
15
 
14
- @text.gsub!(/source ['"]https?:\/\/[\S]+['"]/, @new_source)
15
- write_to_file if @text.include? new_source
16
- end
16
+ replace_source
17
+
18
+ if @text.include? new_source
19
+ write_to_file
20
+ else
21
+ puts "\e[31mSomething goes wrong! please make sure your Gemfile has something like:\nsource 'http://rubygems.org'\e[0m"
22
+ end
23
+ end
24
+
25
+ def replace_source
26
+ @text.gsub!(/source ['"]https?:\/\/[\S]+['"]/, @new_source)
27
+ end
17
28
 
18
- def self.write_to_file
19
- File.open('Gemfile', 'w') do |file|
20
- file.write @text
29
+ def write_to_file
30
+ File.open(Gemfile, 'w') do |file|
31
+ file.write @text
32
+ end
33
+ puts "\e[32mChange to #{@new_source} successfully!\e[0m"
21
34
  end
22
- puts "\e[32mChange to #{@new_source} successfully!\e[0m"
23
35
  end
24
36
  end
25
37
  end
data/lib/chsource/cli.rb CHANGED
@@ -5,7 +5,6 @@ require 'optparse'
5
5
  module Chsource
6
6
  module CLI
7
7
  def self.start(args)
8
- # Chsource.change_source(argv.first)
9
8
  ARGV << '-h' if ARGV.empty? && $stdin.tty?
10
9
 
11
10
  opts = OptionParser.new do |opts|
@@ -23,7 +22,7 @@ module Chsource
23
22
  opts.separator "Options:"
24
23
 
25
24
  opts.on("-v", "--version", "Print the version") do |v|
26
- puts "Chsource v#{Chsource::Version}"
25
+ puts "Chsource v#{Version}"
27
26
  exit
28
27
  end
29
28
 
@@ -1,3 +1,3 @@
1
1
  module Chsource
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hao Wei
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: 5.0.0
55
- description: change Gemfile's source to 3rd party quickly
55
+ description: chsource make you change Gemfile's source quickly
56
56
  email:
57
57
  - imwillmouse@gmail.com
58
58
  executables:
@@ -68,7 +68,6 @@ files:
68
68
  - bin/chsourse
69
69
  - chsource.gemspec
70
70
  - lib/chsource.rb
71
- - lib/chsource/Gemfile
72
71
  - lib/chsource/chsource.rb
73
72
  - lib/chsource/cli.rb
74
73
  - lib/chsource/version.rb
data/lib/chsource/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- # Specify your gem's dependencies in chsource.gemspec
4
- gemspec