bundle-star 1.0.0
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 +41 -0
- data/Rakefile +1 -0
- data/bin/bundle-star +47 -0
- data/bundle-star.gemspec +25 -0
- metadata +108 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a496306bfda864071b36849b830b4d13d5dfb03b
|
|
4
|
+
data.tar.gz: 0821eeb46b32cb17813bec43894d76f99ab23e45
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b6d6a8f866ba36f952df5d06067c48993df48f188861e6dbcca10985c0a4f01fc9602dd4c28c2d6b833281238b23f7f89addb3533177dff7d5c68231528f75d8
|
|
7
|
+
data.tar.gz: 43b187c67e1e0f9c05fd94f7b0c358bf4a9a153199eb9870735846566a3441f606589429d68ef9b3656a5f23e4f3e3b7f1ce803900ea74804c85dad32c78a9f0
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2013 Takayuki Matsubara
|
|
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,41 @@
|
|
|
1
|
+
# Bundle-star
|
|
2
|
+
|
|
3
|
+
Bundle-star starred gem's github repository when `bundle-star install`ed
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Install it yourself as:
|
|
8
|
+
|
|
9
|
+
$ gem install bundle-star
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Setup a .netrc file
|
|
14
|
+
|
|
15
|
+
Bundle-star depends on Netrc gem and Octokit gem to access GitHub API.
|
|
16
|
+
Write your GitHub credentials into `.netrc` file(locating to `~/.netrc`), you can now access to GitHub API by bundle-star command.
|
|
17
|
+
|
|
18
|
+
The following is a sample `.netrc` file.
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
machine api.github.com
|
|
22
|
+
login <your github account>
|
|
23
|
+
password <your 40 char github token>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Use `bundle-star` instead of `bundle`:
|
|
27
|
+
|
|
28
|
+
$ bundle-star install
|
|
29
|
+
$ bundle-star update
|
|
30
|
+
|
|
31
|
+
### Pro tip:
|
|
32
|
+
|
|
33
|
+
alias bsi="bundle-star install"
|
|
34
|
+
|
|
35
|
+
## Contributing
|
|
36
|
+
|
|
37
|
+
1. Fork it
|
|
38
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
39
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
40
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
41
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/bundle-star
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "rubygems"
|
|
4
|
+
require "octokit"
|
|
5
|
+
|
|
6
|
+
module Bundler
|
|
7
|
+
class Star
|
|
8
|
+
attr_reader :installer
|
|
9
|
+
|
|
10
|
+
def initialize(installer)
|
|
11
|
+
@installer = installer
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def star
|
|
15
|
+
if repo = repository
|
|
16
|
+
begin
|
|
17
|
+
client = Octokit::Client.new netrc: true
|
|
18
|
+
client.star repo
|
|
19
|
+
puts "starred #{repo}"
|
|
20
|
+
rescue => e
|
|
21
|
+
puts "failed starring #{repo}, reason #{e}"
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
private
|
|
27
|
+
|
|
28
|
+
def repository
|
|
29
|
+
url = installer.spec.homepage
|
|
30
|
+
if url =~ /\Ahttps?:\/\/([^.]+)?\.?github.com\/(.+)/
|
|
31
|
+
if $1 == nil
|
|
32
|
+
$2
|
|
33
|
+
elsif $1 == 'www'
|
|
34
|
+
$2
|
|
35
|
+
else
|
|
36
|
+
"#{$1}/#{$2}"
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
Gem.post_install do |installer|
|
|
44
|
+
Bundler::Star.new(installer).star
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
load(Gem.bin_path("bundler", "bundle"))
|
data/bundle-star.gemspec
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "bundle-star"
|
|
7
|
+
spec.version = "1.0.0"
|
|
8
|
+
spec.authors = ["Takayuki Matsubara"]
|
|
9
|
+
spec.email = ["takayuki.1229@gmail.com"]
|
|
10
|
+
spec.description = %q{Star github repositories automatically when you `bundle-star install`ed}
|
|
11
|
+
spec.summary = %q{Star github repositories automatically when you `bundle-star install`ed}
|
|
12
|
+
spec.homepage = "https://github.com/ma2gedev/bundle-star"
|
|
13
|
+
spec.license = "MIT"
|
|
14
|
+
|
|
15
|
+
spec.files = `git ls-files`.split($/)
|
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
spec.require_paths = ["lib"]
|
|
19
|
+
|
|
20
|
+
spec.add_dependency "bundler"
|
|
21
|
+
spec.add_dependency "netrc"
|
|
22
|
+
spec.add_dependency "octokit", "~> 2.0"
|
|
23
|
+
|
|
24
|
+
spec.add_development_dependency "rake"
|
|
25
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: bundle-star
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Takayuki Matsubara
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-09-18 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: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: netrc
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
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: octokit
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ~>
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ~>
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
description: Star github repositories automatically when you `bundle-star install`ed
|
|
70
|
+
email:
|
|
71
|
+
- takayuki.1229@gmail.com
|
|
72
|
+
executables:
|
|
73
|
+
- bundle-star
|
|
74
|
+
extensions: []
|
|
75
|
+
extra_rdoc_files: []
|
|
76
|
+
files:
|
|
77
|
+
- .gitignore
|
|
78
|
+
- Gemfile
|
|
79
|
+
- LICENSE.txt
|
|
80
|
+
- README.md
|
|
81
|
+
- Rakefile
|
|
82
|
+
- bin/bundle-star
|
|
83
|
+
- bundle-star.gemspec
|
|
84
|
+
homepage: https://github.com/ma2gedev/bundle-star
|
|
85
|
+
licenses:
|
|
86
|
+
- MIT
|
|
87
|
+
metadata: {}
|
|
88
|
+
post_install_message:
|
|
89
|
+
rdoc_options: []
|
|
90
|
+
require_paths:
|
|
91
|
+
- lib
|
|
92
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '>='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
|
+
requirements:
|
|
99
|
+
- - '>='
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
version: '0'
|
|
102
|
+
requirements: []
|
|
103
|
+
rubyforge_project:
|
|
104
|
+
rubygems_version: 2.0.3
|
|
105
|
+
signing_key:
|
|
106
|
+
specification_version: 4
|
|
107
|
+
summary: Star github repositories automatically when you `bundle-star install`ed
|
|
108
|
+
test_files: []
|