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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a52e022b54c130c9bdebc6c7cabfc1b0485a725f
4
- data.tar.gz: f03214e8a23f760cab78b226674f3d975559c4b6
3
+ metadata.gz: 6cea7f8876bf1b61a85d5d17bbc858bb74164ab6
4
+ data.tar.gz: 9fde2b1f951b70824729d4357aec426f693b861b
5
5
  SHA512:
6
- metadata.gz: b7a7c72923df1b1a7a5bf224849ff88b09a1b3b62b146a5efbcea4f7c050739d71f57df25059d1ae8f772fa47480105f95ffce0f8809315f41e66e0b13c0cd78
7
- data.tar.gz: 5be40d2afb687b77b8b6611b4cd0df477c91d20eba0c94a9e39c7e5d12a56518ad140d2706ac26d0fc3c81a9d1a974d15303f55ffd4ee936ba26473a2dce52ee
6
+ metadata.gz: 27359d978a4680886636b2f2822a48f438be742076d0f0416ffa1e0afc0418fb6edc246a6f77484e2ce0f32863de4cc71a1a906cab1ef94e02a8d3ed1432159f
7
+ data.tar.gz: d844a00842faed2254a41dfdabccfcb2197c2d357964e21ba303b5db481ee322b41ef9527e4f4d590f138b431bd95b3c3154bac9b0a9d2753c5d603cdf7d0504
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -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"]
@@ -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} ; ls ; cd #{gem} ; gem build #{gem}.gemspec ; gem install *.gem")
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.2
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
@@ -1,3 +0,0 @@
1
- module GemInstallBranchTest
2
- VERSION = '0.1.x'
3
- end