executable-hooks 1.6.0 → 1.6.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.
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.1
4
+ date: 2021-01-26
5
+
6
+ - Avoid Ruby 2.7 warning, merge #38
7
+
3
8
  ## 1.6.0
4
9
  date: 2018-10-25
5
10
 
@@ -14,9 +14,7 @@ end unless $0.end_with?('/executable-hooks-uninstaller')
14
14
 
15
15
  content = File.read($0)
16
16
 
17
- if
18
- (index = content.index("\n#!ruby\n")) && index > 0
19
- then
17
+ if (index = content.index("\n#!ruby\n")) && index > 0
20
18
  skipped_content = content.slice!(0..index)
21
19
  start_line = skipped_content.count("\n") + 1
22
20
  eval content, binding, $0, start_line
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.license = 'Apache 2.0'
10
10
  s.authors = ["Michal Papis"]
11
11
  s.email = ["mpapis@gmail.com"]
12
- s.homepage = "https://github.com/mpapis/executable-hooks"
12
+ s.homepage = "https://github.com/rvm/executable-hooks"
13
13
  s.summary = %q{
14
14
  Hook into rubygems executables allowing extra actions to be taken before executable is run.
15
15
  }
@@ -1,3 +1,3 @@
1
1
  module ExecutableHooks
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
metadata CHANGED
@@ -1,40 +1,50 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: executable-hooks
3
- version: !ruby/object:Gem::Version
4
- version: 1.6.0
3
+ version: !ruby/object:Gem::Version
4
+ hash: 13
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 6
9
+ - 1
10
+ version: 1.6.1
5
11
  platform: ruby
6
- authors:
12
+ authors:
7
13
  - Michal Papis
8
14
  autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2021-01-06 00:00:00 +01:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
14
22
  name: tf
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '0.4'
20
- type: :development
21
23
  prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '0.4'
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ - 4
33
+ version: "0.4"
34
+ type: :development
35
+ version_requirements: *id001
27
36
  description:
28
- email:
37
+ email:
29
38
  - mpapis@gmail.com
30
- executables:
39
+ executables:
31
40
  - executable-hooks-uninstaller
32
- extensions:
41
+ extensions:
33
42
  - ext/wrapper_installer/extconf.rb
34
43
  extra_rdoc_files: []
35
- files:
36
- - ".gitignore"
37
- - ".travis.yml"
44
+
45
+ files:
46
+ - .gitignore
47
+ - .travis.yml
38
48
  - CHANGELOG.md
39
49
  - Gemfile
40
50
  - LICENSE
@@ -55,31 +65,42 @@ files:
55
65
  - test-tf-bundle/bundle_comment_test.sh
56
66
  - test-tf-truffleruby/truffleruby_comment_test.sh
57
67
  - test-tf/rubygems_comment_test.sh
58
- homepage: https://github.com/mpapis/executable-hooks
59
- licenses:
68
+ has_rdoc: true
69
+ homepage: https://github.com/rvm/executable-hooks
70
+ licenses:
60
71
  - Apache 2.0
61
- metadata: {}
62
72
  post_install_message: |
63
73
  # In case of problems run the following command to update binstubs:
64
74
  gem regenerate_binstubs
75
+
65
76
  rdoc_options: []
66
- require_paths:
77
+
78
+ require_paths:
67
79
  - lib
68
- required_ruby_version: !ruby/object:Gem::Requirement
69
- requirements:
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
70
83
  - - ">="
71
- - !ruby/object:Gem::Version
72
- version: '0'
73
- required_rubygems_version: !ruby/object:Gem::Requirement
74
- requirements:
84
+ - !ruby/object:Gem::Version
85
+ hash: 3
86
+ segments:
87
+ - 0
88
+ version: "0"
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
75
92
  - - ">="
76
- - !ruby/object:Gem::Version
77
- version: '0'
93
+ - !ruby/object:Gem::Version
94
+ hash: 3
95
+ segments:
96
+ - 0
97
+ version: "0"
78
98
  requirements: []
99
+
79
100
  rubyforge_project:
80
- rubygems_version: 2.7.7
101
+ rubygems_version: 1.3.7
81
102
  signing_key:
82
- specification_version: 4
83
- summary: Hook into rubygems executables allowing extra actions to be taken before
84
- executable is run.
103
+ specification_version: 3
104
+ summary: Hook into rubygems executables allowing extra actions to be taken before executable is run.
85
105
  test_files: []
106
+
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA256:
3
- metadata.gz: a8e3c13fca83fa0756a3bf325a0c78770cf491ab9bf163c1577c28073ba1a091
4
- data.tar.gz: 5f2fb952f2b1fe6b8c089ae1003f1b42f9ca61ff5a9b488ec438d85588b82d15
5
- SHA512:
6
- metadata.gz: 301de90b40f74a867a1f6e674bdd0c97b468f71d02e3eb8f9339b9b65008b4e71b96a6f87bb18d8016fe2f7708a95a067f0f5d77d5c6086c25649bb5f8db6abb
7
- data.tar.gz: 41b3f27a63ead68eba66da52d9105d7c1eddee0836044ca676d36c09a931e2943de7764dabdbe73d487026f1b34f6b574a56adea3e1445d9f2d6891ba0cf3d7f