solano 1.31.0 → 1.31.2

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MmY5ZWMxY2NlNjVhZGIyYzkxZjU1NzZmNGYyMjQ3YThhYzY3ZWYyYg==
4
+ NWU0NWM2NTBmMDQ1YzdkMzE4YWU1ZTE1MjQ4ODBkMTRjMjg2NDY1Ng==
5
5
  data.tar.gz: !binary |-
6
- YjMzNTIxZTAzODczOTIzZTUzYWZjYjIxZGFjODg3ODQxMzc3MjlmZQ==
6
+ Mzc0MmYwMjMwOWE5ZmU3N2VjNWYxNDFjMzYwZWNjZmVjZDI0OTViYw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWUzNzA1M2Q3NTg0M2U3ZmE0ZDFiMGM2ZWZlMDkwYjIyZTNkY2Q1Y2EyNDI0
10
- N2JkN2E2MGE0YmQxNGYxMmVmMTA2NzM4ZjUzMmYxOGY0YzNhZTRmNmQ3ODYz
11
- YmVlOTIyNjU0MjVlMTNjZDEzZmEyMzgzYjhkYjA5MGRhNzE0YWI=
9
+ NDQ2MzFmMDZmNGQ4OGZlNGQ4OGRlMzA5YzEwYjkzYzE3ZTExZjc5ZDJmNTEw
10
+ NzAyOGM4NGEwY2U4YmI2ZTk4MWEzOWJiYmYxOTRjOTZhZWMzYjdiZDI0YWY3
11
+ ZmI0NjVmNDgyMzllZGMzYjAxZTE5YWQ1MTE0OGM3MmJjMTdkMGI=
12
12
  data.tar.gz: !binary |-
13
- NGI0ZjI0NDZiZTBkZmYyYWQxM2I4NWMxNDI1MDJlZjY0MDE5NTQ5ODlhYWVm
14
- OThjOTEwMzkxNDIyMGI5NDgzYzhiOWQ2ZDIxNTk1NzczNTYyYzUxY2Q4ZTRj
15
- Mzk3YmZlOTVkZTNkOWRiZmRiOTczNDdmMWZjZmIxZGRiNDA0Njc=
13
+ NGM1NDA4ZTUyZjkxY2NiNjUzM2ZmZTFjN2FjY2Q3NjY1ZDkyMmFiNThhZTc2
14
+ MGJhZjE5ZDk2MzhiNDY3NzllOTk1YTMxYTFkYjJlZmQ3NzQ2MjYwM2ViZGJk
15
+ NWE1YTY4ZDFjZDg0NjViNGUwNjEwZTEzMTc4YzQ4ZWJkZWY5MGI=
@@ -302,7 +302,7 @@ EOF
302
302
  ATTEMPT_UPSTREAM_PATCH = "Attempting to create a patch from %s"
303
303
  CREATING_PATCH =<<EOF
304
304
  Creating a Patch by running
305
- git diff --minimal -p --ignore-space-at-eol --no-prefix %s..%s
305
+ %s
306
306
  Please see http://docs.solanolabs.com/RunningBuild/snapshots-and-patches/ for more info on patching
307
307
  EOF
308
308
  ASK_FOR_SNAPSHOT =<<EOF
@@ -225,10 +225,11 @@ module Solano
225
225
 
226
226
  file_name = "solano-#{SecureRandom.hex(10)}.patch"
227
227
  file_path = File.join(Dir.tmpdir, file_name)
228
- say Text::Process::CREATING_PATCH % [patch_base_sha, self.current_commit]
229
- out = ` git diff-index -p --minimal #{patch_base_sha} > #{file_path}`
228
+ cmd = "git diff-index -p --minimal --full-index --binary #{patch_base_sha}"
229
+ say Text::Process::CREATING_PATCH % cmd
230
+ out = `#{cmd} > #{file_path}`
230
231
  if !$?.success? then
231
- say Text::Error::FAILED_TO_CREATE_PATCH % [patch_base_sha, out]
232
+ say Text::Error::FAILED_TO_CREATE_PATCH % cmd
232
233
  offer_snapshot_creation(session_id, :api=>api)
233
234
  return
234
235
  end
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2011-2016 Solano Labs All Rights Reserved
2
2
 
3
3
  module Solano
4
- VERSION = "1.31.0"
4
+ VERSION = "1.31.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solano
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.31.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solano Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-12 00:00:00.000000000 Z
11
+ date: 2016-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor