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 +4 -4
- data/chsource.gemspec +1 -1
- data/lib/chsource/chsource.rb +22 -10
- data/lib/chsource/cli.rb +1 -2
- data/lib/chsource/version.rb +1 -1
- metadata +2 -3
- data/lib/chsource/Gemfile +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3b9a8413e6c7a81bcb8f0b21f9c11889fdee3f7
|
4
|
+
data.tar.gz: 6bef9dd833af45bdd6c84ba10c0040edbf97de7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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"
|
data/lib/chsource/chsource.rb
CHANGED
@@ -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
|
-
|
11
|
-
|
12
|
-
|
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
|
-
|
15
|
-
|
16
|
-
|
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
|
-
|
19
|
-
|
20
|
-
|
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#{
|
25
|
+
puts "Chsource v#{Version}"
|
27
26
|
exit
|
28
27
|
end
|
29
28
|
|
data/lib/chsource/version.rb
CHANGED
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
|
+
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
|
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