chsource 0.0.1
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 +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +11 -0
- data/bin/chsourse +5 -0
- data/chsource.gemspec +24 -0
- data/lib/chsource/Gemfile +4 -0
- data/lib/chsource/chsource.rb +27 -0
- data/lib/chsource/cli.rb +41 -0
- data/lib/chsource/version.rb +3 -0
- data/lib/chsource.rb +7 -0
- data/test/chsource_test.rb +38 -0
- data/test/fixtures/Gemfile +4 -0
- data/test/test_helper.rb +11 -0
- metadata +106 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5807b8d8e287479ab7a833d7b94200ba9715886d
|
4
|
+
data.tar.gz: c6899b228f3b78fd67ae6e80fb34c970e539c7f8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e6696500f953442f5e732533414b1c494aee99348befdcf9fc7605c030092f6616ca5ce322b89342dd48f26c0f7f0e8f2d48dba86f9cf7bd17496dc98379f375
|
7
|
+
data.tar.gz: 9d964516a97adfccd235ac5349338acf52dd9627c3629c46c98af46258ae326627d164996596014f605d6fa14d52727a28a1d6bfc31f41a90d34699aeb32e728
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 @weih
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Chsource
|
2
|
+
|
3
|
+
Change Gemfile to use 3rd party sources.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
``` shell
|
8
|
+
gem install chsource
|
9
|
+
```
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
``` shell
|
14
|
+
Usage: chsource SOURCE
|
15
|
+
|
16
|
+
Examples:
|
17
|
+
$ chsource taobao => source 'http://ruby.taobao.org'
|
18
|
+
$ chsource gzruby => source 'http://gems.gzruby.com
|
19
|
+
$ chsource tsinghua => source 'http://mirrors.tuna.tsinghua.edu.cn/rubygems'
|
20
|
+
$ chsource rubygems => source 'http://rubygems.org'
|
21
|
+
|
22
|
+
Options:
|
23
|
+
-v, --version Print the version
|
24
|
+
-h, --help Show this message
|
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/Rakefile
ADDED
data/bin/chsourse
ADDED
data/chsource.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'chsource/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "chsource"
|
8
|
+
spec.version = Chsource::VERSION
|
9
|
+
spec.authors = ["Hao Wei"]
|
10
|
+
spec.email = ["imwillmouse@gmail.com"]
|
11
|
+
spec.description = %q{change Gemfile's source to 3rd party quickly}
|
12
|
+
spec.summary = %q{change Gemfile's source to 3rd party quickly}
|
13
|
+
spec.homepage = "http://github.com/weih/chsource"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "minitest", "~> 5.0.0"
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'pry'
|
2
|
+
|
3
|
+
module Chsource
|
4
|
+
class Chsource
|
5
|
+
Source = {
|
6
|
+
rubygems: "source 'http://rubygems.org'",
|
7
|
+
taobao: "source 'http://ruby.taobao.org'",
|
8
|
+
gzruby: "source 'http://gems.gzruby.org'",
|
9
|
+
tsinghua: "source 'http://mirrors.tuna.tsinghua.edu.cn/rubygems'"
|
10
|
+
}
|
11
|
+
|
12
|
+
def self.change_source(new_source)
|
13
|
+
@text = File.read('Gemfile')
|
14
|
+
@new_source = Source[new_source.to_sym]
|
15
|
+
|
16
|
+
@text.gsub!(/source ['"]https?:\/\/[\S]+['"]/, @new_source)
|
17
|
+
write_to_file if @text.include? new_source
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.write_to_file
|
21
|
+
File.open('Gemfile', 'w') do |file|
|
22
|
+
file.write @text
|
23
|
+
end
|
24
|
+
puts "\e[32mChange to #{@new_source} successfully!\e[0m"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
data/lib/chsource/cli.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'chsource'
|
2
|
+
require 'chsource/version'
|
3
|
+
require 'optparse'
|
4
|
+
|
5
|
+
module Chsource
|
6
|
+
module CLI
|
7
|
+
def self.start(args)
|
8
|
+
# Chsource.change_source(argv.first)
|
9
|
+
ARGV << '-h' if ARGV.empty? && $stdin.tty?
|
10
|
+
|
11
|
+
opts = OptionParser.new do |opts|
|
12
|
+
opts.banner = "Usage: chsource SOURCE"
|
13
|
+
|
14
|
+
opts.separator " "
|
15
|
+
|
16
|
+
opts.separator "Examples:"
|
17
|
+
opts.separator " $ chsource taobao => source 'http://ruby.taobao.org'"
|
18
|
+
opts.separator " $ chsource gzruby => source 'http://gems.gzruby.com"
|
19
|
+
opts.separator " $ chsource tsinghua => source 'http://mirrors.tuna.tsinghua.edu.cn/rubygems'"
|
20
|
+
opts.separator " $ chsource rubygems => source 'http://rubygems.org'"
|
21
|
+
|
22
|
+
opts.separator " "
|
23
|
+
opts.separator "Options:"
|
24
|
+
|
25
|
+
opts.on("-v", "--version", "Print the version") do |v|
|
26
|
+
puts "Chsource v#{Chsource::Version}"
|
27
|
+
exit
|
28
|
+
end
|
29
|
+
|
30
|
+
opts.on_tail("-h", "--help", "Show this message") do
|
31
|
+
puts opts
|
32
|
+
exit
|
33
|
+
end
|
34
|
+
|
35
|
+
opts.parse!(args)
|
36
|
+
end
|
37
|
+
|
38
|
+
Chsource.change_source ARGV[0]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
data/lib/chsource.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module Chsource
|
4
|
+
class TestChsource< Minitest::Test
|
5
|
+
Dir.chdir 'test/fixtures'
|
6
|
+
|
7
|
+
def setup
|
8
|
+
@rubygems= 'rubygems'
|
9
|
+
@taobao = 'taobao'
|
10
|
+
@gzruby = 'gzruby'
|
11
|
+
@tsinghua = 'tsinghua'
|
12
|
+
end
|
13
|
+
|
14
|
+
def check_content(content)
|
15
|
+
file_content = File.read('Gemfile')
|
16
|
+
assert_equal true, file_content.include?(content)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_change_source_to_taobao
|
20
|
+
Chsource.change_source(@taobao)
|
21
|
+
check_content('taobao')
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_change_source_to_gzruby
|
25
|
+
Chsource.change_source(@gzruby)
|
26
|
+
check_content('gzruby')
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_change_source_to_tsinghua
|
30
|
+
Chsource.change_source(@tsinghua)
|
31
|
+
check_content('tsinghua')
|
32
|
+
end
|
33
|
+
|
34
|
+
def teardown
|
35
|
+
Chsource.change_source(@rubygems)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'minitest/autorun'
|
2
|
+
require 'minitest/pride'
|
3
|
+
# require 'bundler/setup'
|
4
|
+
|
5
|
+
testdir = File.dirname(__FILE__)
|
6
|
+
$LOAD_PATH.unshift testdir unless $LOAD_PATH.include?(testdir)
|
7
|
+
|
8
|
+
libdir = File.dirname(File.dirname(__FILE__)) + '/lib'
|
9
|
+
$LOAD_PATH.unshift libdir unless $LOAD_PATH.include?(libdir)
|
10
|
+
|
11
|
+
require 'chsource'
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chsource
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Hao Wei
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-08-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 5.0.0
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 5.0.0
|
55
|
+
description: change Gemfile's source to 3rd party quickly
|
56
|
+
email:
|
57
|
+
- imwillmouse@gmail.com
|
58
|
+
executables:
|
59
|
+
- chsourse
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- .gitignore
|
64
|
+
- Gemfile
|
65
|
+
- LICENSE.txt
|
66
|
+
- README.md
|
67
|
+
- Rakefile
|
68
|
+
- bin/chsourse
|
69
|
+
- chsource.gemspec
|
70
|
+
- lib/chsource.rb
|
71
|
+
- lib/chsource/Gemfile
|
72
|
+
- lib/chsource/chsource.rb
|
73
|
+
- lib/chsource/cli.rb
|
74
|
+
- lib/chsource/version.rb
|
75
|
+
- test/chsource_test.rb
|
76
|
+
- test/fixtures/Gemfile
|
77
|
+
- test/test_helper.rb
|
78
|
+
homepage: http://github.com/weih/chsource
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.0.3
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: change Gemfile's source to 3rd party quickly
|
102
|
+
test_files:
|
103
|
+
- test/chsource_test.rb
|
104
|
+
- test/fixtures/Gemfile
|
105
|
+
- test/test_helper.rb
|
106
|
+
has_rdoc:
|