prick 0.46.0 → 0.46.1

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
  SHA256:
3
- metadata.gz: '08b98b5cd47f2f9509bea5ecf7816c83d85f56e64811f3466317e474fcd6a2bd'
4
- data.tar.gz: c303b9882c8ff8f9ea1c4e14e42e24c2ea84507165e9f664f4849ad35eed9c12
3
+ metadata.gz: a2b735f370a697a579d10b8b651950f6eeef7fa061ee787976e5eeff3ee2fdc5
4
+ data.tar.gz: b641d15c6035891358b913b57b2b01b7c10bbe9c9dd56a7c5b5e229bcaa00374
5
5
  SHA512:
6
- metadata.gz: 67984f2ce1a47cc947703cfad3765c3c11bd2d8edeca353c51a87d6bf633da23fb1d4a228368c92a760d4c02e3957f3fde74697ff80b6288132c88f8a916c090
7
- data.tar.gz: 25c1d87f54a2b0a44565a810b7c37e6902f1a8eac8fc62ebdeb1cac8585fd5021a83fc640a53119c5100704517226fc20d87f049d8ebf6a6c258c604802fdd7c
6
+ metadata.gz: bacc0e9d3c6bb77b856a7ee9e955693f784ed3aedef5b8dfa4678a8570800277a423e3e2c3c91b0269fcce5622475d1158224bba8b74ff9acfed65cc40e7de21
7
+ data.tar.gz: 3670e4ec7a3ec1c77ad72ca4b0e5d1dcc4652924c9afd4750c160ed0972a1d252e1ffaf68ce49f535f3db8f44d05ee76ba455d2c8bf7a1e05fc8a77b1d9109dd
@@ -197,6 +197,11 @@ module Prick
197
197
  end
198
198
  end
199
199
 
200
+ # Note that script nodes are evaluated within the running Prick process so
201
+ # it inherites all constants, classes, load path etc. Notice that this
202
+ # means that a script can't require a file that is also not required by
203
+ # prick
204
+ #
200
205
  class ScriptNode < ExecutableNode
201
206
  protected
202
207
  alias_method :execute, :execute_script
@@ -94,7 +94,7 @@ module Command
94
94
  end
95
95
 
96
96
  private
97
- # cmd is the of the command/script and is only used in error messages
97
+ # cmd is the name of the command/script and is only used in error messages
98
98
  def command_wrapper(cmd, stdin: nil, stderr: nil, fail: true, &block)
99
99
  pw = IO::pipe # pipe[0] for read, pipe[1] for write
100
100
  pr = IO::pipe
@@ -16,7 +16,7 @@ create table builds (
16
16
  prick varchar not null,-- Prick version
17
17
 
18
18
  -- Git
19
- branch varchar not null,
19
+ branch varchar, -- Null in detached branches
20
20
  rev varchar not null, -- commit ID
21
21
  clean boolean not null default true, -- True if git repository is clean
22
22
 
data/lib/prick/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Prick
4
- VERSION = "0.46.0"
4
+ VERSION = "0.46.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prick
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.46.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-18 00:00:00.000000000 Z
11
+ date: 2025-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: semantic
@@ -258,7 +258,7 @@ files:
258
258
  homepage: http://www.nowhere.com/
259
259
  licenses: []
260
260
  metadata: {}
261
- post_install_message:
261
+ post_install_message:
262
262
  rdoc_options: []
263
263
  require_paths:
264
264
  - lib
@@ -274,7 +274,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
274
274
  version: '0'
275
275
  requirements: []
276
276
  rubygems_version: 3.3.7
277
- signing_key:
277
+ signing_key:
278
278
  specification_version: 4
279
279
  summary: A release control and management system for postgresql
280
280
  test_files: []