gem-install-branch 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/VERSION +1 -1
- data/gem-install-branch.gemspec +1 -1
- data/lib/gem_install_branch.rb +1 -1
- metadata +1 -3
- data/gem-install-branch-test.gemspec +0 -17
- data/lib/gem_install_branch_test.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cea7f8876bf1b61a85d5d17bbc858bb74164ab6
|
|
4
|
+
data.tar.gz: 9fde2b1f951b70824729d4357aec426f693b861b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27359d978a4680886636b2f2822a48f438be742076d0f0416ffa1e0afc0418fb6edc246a6f77484e2ce0f32863de4cc71a1a906cab1ef94e02a8d3ed1432159f
|
|
7
|
+
data.tar.gz: d844a00842faed2254a41dfdabccfcb2197c2d357964e21ba303b5db481ee322b41ef9527e4f4d590f138b431bd95b3c3154bac9b0a9d2753c5d603cdf7d0504
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/gem-install-branch.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.homepage = "https://github.com/wojtekmach/gem-install-branch"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
|
-
spec.files = `git ls-files`.split($/)
|
|
16
|
+
spec.files = `git ls-files`.split($/) - ['gem-install-branch-test.gemspec', 'lib/gem_install_branch_test.rb']
|
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
data/lib/gem_install_branch.rb
CHANGED
|
@@ -7,7 +7,7 @@ module GemInstallBranch
|
|
|
7
7
|
puts gem + " " + branch
|
|
8
8
|
command = "git clone --branch #{branch} https://github.com/#{github_repo(gem)} #{gem}"
|
|
9
9
|
Dir.mktmpdir do |dir|
|
|
10
|
-
system("cd #{dir} ; #{command} ;
|
|
10
|
+
system("cd #{dir} ; #{command} ; cd #{gem} ; gem build #{gem}.gemspec ; gem install --local #{gem}-*.gem")
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gem-install-branch
|
|
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
|
- Wojciech Mach
|
|
@@ -63,11 +63,9 @@ files:
|
|
|
63
63
|
- Gemfile
|
|
64
64
|
- Rakefile
|
|
65
65
|
- VERSION
|
|
66
|
-
- gem-install-branch-test.gemspec
|
|
67
66
|
- gem-install-branch.gemspec
|
|
68
67
|
- lib/gem_install_branch.rb
|
|
69
68
|
- lib/gem_install_branch/version.rb
|
|
70
|
-
- lib/gem_install_branch_test.rb
|
|
71
69
|
- lib/rubygems/commands/install_branch_command.rb
|
|
72
70
|
- lib/rubygems_plugin.rb
|
|
73
71
|
- test/gem_install_branch_test.rb
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'gem_install_branch_test'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "gem-install-branch-test"
|
|
8
|
-
spec.version = GemInstallBranchTest::VERSION
|
|
9
|
-
spec.authors = ["Wojciech Mach"]
|
|
10
|
-
spec.email = ["wojtek@wojtekmach.pl"]
|
|
11
|
-
spec.description = "gem-install-branch test gem"
|
|
12
|
-
spec.summary = "Used for testing gem-install-branch"
|
|
13
|
-
spec.homepage = "https://github.com/wojtekmach/gem-install-branch"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
|
|
16
|
-
spec.files = ['gem-install-branch-test.gemspec', 'lib/gem_install_branch_test.rb']
|
|
17
|
-
end
|