specific_install 0.2.11 → 0.2.12

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: b80e182b18c23ec8f58a399d71dbc4f6455c8723
4
- data.tar.gz: e97ae53715f4958b9cbb442c0520d5b2817f1af3
3
+ metadata.gz: 6358dbe68b20355e3a6fa98e5d13091200fe5cc7
4
+ data.tar.gz: 4890a7e41dcb98300bfdcff0d5dd27f0ee037117
5
5
  SHA512:
6
- metadata.gz: caf9a884a0e19435381cdd95e9f2f153cc03f84e2df0b18aa96c8f334e601ef998d4ef4fb448f129be6f2a9e54fdc27a6bb3f17e049867bfa87551075ca64069
7
- data.tar.gz: ff1a4cd9b6750421a3130da2b4a5c4d63ede16d01c3555624f0f8b43067c69e1e1e68740cd8de1e05125c9d11bc1564a3292b623cb6ec5b34104891e7d6c31af
6
+ metadata.gz: 0fb631c434073ffe259bc666bfdc7ab3541759c95264b614d6cb4f92a2858cd9218cd78f050b4467107098c47560ff8830f441278fdd5cec20e0ece8d970ab1f
7
+ data.tar.gz: 9afbdd54d15ac02b5050651baeaa1b5644afffe23f8a1eaf9b842c12490b1b88910b1f4e55ad28ea97c6bbf5c09d09140335aabcff46cf1271a224dc74b47aea
data/ChangeLog ADDED
@@ -0,0 +1,2 @@
1
+ 0.2.12
2
+ automatically clone submodules if any are there
data/README.md CHANGED
@@ -92,4 +92,4 @@ Work-arounds: Upgrade Rubygems via `rvm rubygems current` or install older versi
92
92
 
93
93
  Enjoy!
94
94
 
95
- Copyright 2010-2013 Roger Pack - `http://github.com/rdp/specific_installs`
95
+ Copyright 2010-2014 Roger Pack - `http://github.com/rdp/specific_install`
@@ -117,13 +117,14 @@ class Gem::Commands::SpecificInstallCommand < Gem::Command
117
117
  def install_from_git(dir)
118
118
  Dir.chdir dir do
119
119
  change_to_branch(@branch) if @branch
120
+ system("git submodule update --init --recursive") # issue 25
120
121
  # reliable method
121
122
  if install_gemspec
122
123
  success_message
123
124
  exit 0
124
125
  end
125
126
 
126
- # legacy method
127
+ # legacy methods
127
128
  ['', 'rake gemspec', 'rake gem', 'rake build', 'rake package'].each do |command|
128
129
  puts "attempting #{command}..."
129
130
  system command
@@ -1,3 +1,3 @@
1
1
  module SpecificInstall
2
- VERSION = "0.2.11"
2
+ VERSION = "0.2.12"
3
3
  end
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  $:.unshift File.expand_path('../lib', __FILE__)
3
3
  lib = File.expand_path('../lib', __FILE__)
4
- require 'specific_install/version'
4
+ require "#{lib}/specific_install/version"
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specific_install
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.11
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Pack
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-04-17 00:00:00.000000000 Z
12
+ date: 2014-12-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: backports
@@ -119,6 +119,7 @@ extensions: []
119
119
  extra_rdoc_files: []
120
120
  files:
121
121
  - ".gitignore"
122
+ - ChangeLog
122
123
  - Gemfile
123
124
  - Gemfile.lock
124
125
  - LICENSE.txt