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 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
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chsource.gemspec
4
+ gemspec
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
@@ -0,0 +1,11 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rake/testtask'
3
+
4
+ desc 'Default: rake test.'
5
+ task :default => :test
6
+
7
+ desc 'run unit tests.'
8
+ Rake::TestTask.new(:test) do |t|
9
+ t.libs << 'test'
10
+ t.pattern = 'test/**/*_test.rb'
11
+ end
data/bin/chsourse ADDED
@@ -0,0 +1,5 @@
1
+ #! /env/usr/bin ruby
2
+
3
+ require 'chsource'
4
+
5
+ Chsource::CLI.start(ARGV)
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,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chsource.gemspec
4
+ gemspec
@@ -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
@@ -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
@@ -0,0 +1,3 @@
1
+ module Chsource
2
+ VERSION = "0.0.1"
3
+ end
data/lib/chsource.rb ADDED
@@ -0,0 +1,7 @@
1
+ require "chsource/version"
2
+ require 'chsource/chsource'
3
+ require 'chsource/cli'
4
+
5
+ module Chsource
6
+ # Your code goes here...
7
+ end
@@ -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
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chsource.gemspec
4
+ gemspec
@@ -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: