highlander 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8a4817dd13141ee6d4337f421edb7d91a1ebebfd
4
- data.tar.gz: 381c883ec89c83b2b965b021bf2eac75146c14ac
2
+ SHA256:
3
+ metadata.gz: f3e3f093b445573f2d96fc4c07e95dfae01eee82f38ba503d0cff020baf50991
4
+ data.tar.gz: cc60e6a8b44af4795040e391219449292962739ae3f13a710b6dbbc91fd26c37
5
5
  SHA512:
6
- metadata.gz: 2a5c5088d0c96f6cfc5fe2b056fbd7545bcc1a6655b612925e0558ba0fe97804810fd723567c33302bab31d6943b06a529645f82cfeeb99e361ae1df4742cb12
7
- data.tar.gz: 3b7cf5872da11114fa78bfc0e122b60f1a6304d86e34826bd4a1b69e199eb905d9c77ffe7b4eee270727ed5511e4fc60dc423e3b4082096677debc9a51085e60
6
+ metadata.gz: 9ac29f950680461fab70e884fd9e147f2bc371329fba6bcccff1655ce080d49bbe004832415f06cc6c03a15c9cb30410a978ecf45798b3997737489dc4192c35
7
+ data.tar.gz: b5f1685b7791205747823235b050b1da16a3053f4f59ad91242cf9ce9dabcbc6969d5f45004cbdaec06b552692fd48d3e49e9fe756250763e274802be8106357
checksums.yaml.gz.sig CHANGED
Binary file
@@ -1,20 +1,28 @@
1
- = 0.2.1 - 1-February-2017
1
+ ## 0.2.3 - 15-Dec-2020
2
+ * Switch to markdown format for doc files since github isn't parsing rdoc.
3
+
4
+ ## 0.2.2 - 21-Jul-2020
5
+ * Added a LICENSE file as required by the Apache-2.0 license.
6
+ * The VERSION constant is now frozen.
7
+ * Updated certs file again.
8
+
9
+ ## 0.2.1 - 1-Feb-2017
2
10
  * Changed RuntimeError message to fix a missed opportunity.
3
11
  * Fixed typo in description.
4
12
  * Updated certs file.
5
13
 
6
- = 0.2.0 - 3-Oct-2015
14
+ ## 0.2.0 - 3-Oct-2015
7
15
  * Changed license to Apache 2.0.
8
16
  * Gem related tasks in the Rakefile now assume Rubygems 2.x.
9
17
  * Added certs file. This gem is now signed.
10
18
 
11
- = 0.1.2 - 13-Oct-2014
19
+ ## 0.1.2 - 13-Oct-2014
12
20
  * Updates the gemspec, README and Rakefile.
13
21
 
14
- = 0.1.1 - 13-Jan-2013
22
+ ## 0.1.1 - 13-Jan-2013
15
23
  * Fix for 1.9. Moved the BEGIN block outside the module itself
16
24
  to avoid a parse error.
17
25
  * Some gemspec and README updates.
18
26
 
19
- = 0.1.0 - 12-Dec-2010
27
+ ## 0.1.0 - 12-Dec-2010
20
28
  * Initial release
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,177 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
@@ -1,4 +1,5 @@
1
1
  * CHANGES
2
+ * LICENSE
2
3
  * README
3
4
  * MANIFEST
4
5
  * Rakefile
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ ## Description
2
+ A gem that ensures only one instance of your main script is running.
3
+ In short, there can be only one.
4
+
5
+ ## Installation
6
+ `gem install highlander`
7
+
8
+ ## Adding the trusted cert
9
+ `gem cert --add <(curl -Ls https://raw.githubusercontent.com/djberg96/highlander/MacLeod/certs/djberg96_pub.pem)`
10
+
11
+ ## Synopsis
12
+ ```ruby
13
+ require 'highlander' # This should be the -first- thing in your code.
14
+ # Your code here
15
+
16
+ # Meanwhile, back on the command line...
17
+
18
+ # First attempt, works. Assume it's running in the background.
19
+ ruby your_script.rb
20
+
21
+ # Second attempt while the first instance is still running, fails.
22
+ ruby your_script.rb # => RuntimeError
23
+ ```
24
+
25
+ ## Notes
26
+ Simply requiring the highlander gem ensures that only one instance
27
+ of that script cannot be started again. If you try to start it again
28
+ it will raise a RuntimeError.
29
+
30
+ ## Known Issues
31
+ If you start your program, modify it while its running, and run it again
32
+ then this library will not work.
33
+
34
+ ## Acknowledgements
35
+ Ara Howard for ideas.
36
+
37
+ ## License
38
+ Apache-2.0
39
+
40
+ ## Copyright
41
+ (C) 2010-2022 Daniel J. Berger
42
+ All Rights Reserved.
43
+
44
+ ## Warranty
45
+ This package is provided "as is" and without any express or
46
+ implied warranties, including, without limitation, the implied
47
+ warranties of merchantability and fitness for a particular purpose.
48
+
49
+ ## Author
50
+ Daniel J. Berger
data/Rakefile CHANGED
@@ -1,14 +1,14 @@
1
1
  require 'rake'
2
2
  require 'rake/clean'
3
- require 'rake/testtask'
3
+ require 'rspec/core/rake_task'
4
4
 
5
- CLEAN.include("**/*.gem", "**/*.rbc")
5
+ CLEAN.include("**/*.gem", "**/*.rbc", "**/*.lock")
6
6
 
7
7
  namespace 'gem' do
8
8
  desc 'Create the highlander gem'
9
9
  task :create => [:clean] do
10
10
  require 'rubygems/package'
11
- spec = eval(IO.read('highlander.gemspec'))
11
+ spec = Gem::Specification.load('highlander.gemspec')
12
12
  spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
13
13
  Gem::Package.build(spec)
14
14
  end
@@ -20,9 +20,7 @@ namespace 'gem' do
20
20
  end
21
21
  end
22
22
 
23
- Rake::TestTask.new do |t|
24
- t.verbose = true
25
- t.warning = true
26
- end
23
+ desc "Run the test suite"
24
+ RSpec::Core::RakeTask.new(:spec)
27
25
 
28
- task :default => :test
26
+ task :default => :spec
@@ -1,21 +1,26 @@
1
1
  -----BEGIN CERTIFICATE-----
2
- MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhkamJl
2
+ MIIEcDCCAtigAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MREwDwYDVQQDDAhkamJl
3
3
  cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
4
- MB4XDTE2MTAzMTE4NTcyNVoXDTE3MTAzMTE4NTcyNVowPzERMA8GA1UEAwwIZGpi
4
+ MB4XDTE4MDMxODE1MjIwN1oXDTI4MDMxNTE1MjIwN1owPzERMA8GA1UEAwwIZGpi
5
5
  ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
6
- bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwqllig3Tyc29Y3SZgK
7
- fFaApRB5R3l8KkOog3rwqr4Rr8bc8MfAMwHOzfqUMQRF7bPIyd5jLu24tPSC2X8D
8
- SKDS3069iTzTEDSPin90MVes+nd/ngys93lgmJ9DSwpGXQzZ7sWqdaJjzqLqDMhZ
9
- 3LhTRZeMpDA8hyEiX7GmVp+VvhAXQ1pjfoFBmMNrzibUmYXcyllzqfEFcbI31/EK
10
- vlkEmcTKdNyd4aIOFLadZpzVvLxWsxFqi6qwteAwlNk3zxaik6O82iAXq2tcnk8p
11
- asWidshXCiRunncPhVogVYNCS4ISfYD6b/f85T9DsxJ6tsADNfeXnMTRxQcQv+1x
12
- 0l0CAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFC3D
13
- p9cyKtYtWUAefeMpMh4kMUP4MB0GA1UdEQQWMBSBEmRqYmVyZzk2QGdtYWlsLmNv
14
- bTAdBgNVHRIEFjAUgRJkamJlcmc5NkBnbWFpbC5jb20wDQYJKoZIhvcNAQEFBQAD
15
- ggEBAEYzyGzoleAO3i6mOBi/Px1yWdVuU4ejvxrj8axHRK+wHQ+bYvx9eEosuRHB
16
- mXjRvpN9UnOiY7wYbK36MpAALBq3swpcBpYXyfBOdv0JQvjMEGmKqXJS7AbNHNPc
17
- ZbpPrVSdJJ+aTWEDvybl693eEUvEuiSkVIz8w4yNcJP1zOBRBKxG2viJdMKz5Ho7
18
- 2M9INmGCv3GCv4bljYlIIg4YYAyOaBbSQeAb2/F5XAlOR2oEB8ipB+RKGZXR8rq5
19
- EkhPwYAx+jZ4KyPve9JKm34Du9veVFEzq3aW+opaveK167NEorK7xLpmdEcdo9bR
20
- 9CkYV0lClarK7w1ykAePuEeXD7k=
6
+ bTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALgfaroVM6CI06cxr0/h
7
+ A+j+pc8fgpRgBVmHFaFunq28GPC3IvW7Nvc3Y8SnAW7pP1EQIbhlwRIaQzJ93/yj
8
+ u95KpkP7tA9erypnV7dpzBkzNlX14ACaFD/6pHoXoe2ltBxk3CCyyzx70mTqJpph
9
+ 75IB03ni9a8yqn8pmse+s83bFJOAqddSj009sGPcQO+QOWiNxqYv1n5EHcvj2ebO
10
+ 6hN7YTmhx7aSia4qL/quc4DlIaGMWoAhvML7u1fmo53CYxkKskfN8MOecq2vfEmL
11
+ iLu+SsVVEAufMDDFMXMJlvDsviolUSGMSNRTujkyCcJoXKYYxZSNtIiyd9etI0X3
12
+ ctu0uhrFyrMZXCedutvXNjUolD5r9KGBFSWH1R9u2I3n3SAyFF2yzv/7idQHLJJq
13
+ 74BMnx0FIq6fCpu5slAipvxZ3ZkZpEXZFr3cIBtO1gFvQWW7E/Y3ijliWJS1GQFq
14
+ 058qERadHGu1yu1dojmFRo6W2KZvY9al2yIlbkpDrD5MYQIDAQABo3cwdTAJBgNV
15
+ HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFZsMapgzJimzsbaBG2Tm8j5e
16
+ AzgwHQYDVR0RBBYwFIESZGpiZXJnOTZAZ21haWwuY29tMB0GA1UdEgQWMBSBEmRq
17
+ YmVyZzk2QGdtYWlsLmNvbTANBgkqhkiG9w0BAQsFAAOCAYEAW2tnYixXQtKxgGXq
18
+ /3iSWG2bLwvxS4go3srO+aRXZHrFUMlJ5W0mCxl03aazxxKTsVVpZD8QZxvK91OQ
19
+ h9zr9JBYqCLcCVbr8SkmYCi/laxIZxsNE5YI8cC8vvlLI7AMgSfPSnn/Epq1GjGY
20
+ 6L1iRcEDtanGCIvjqlCXO9+BmsnCfEVehqZkQHeYczA03tpOWb6pon2wzvMKSsKH
21
+ ks0ApVdstSLz1kzzAqem/uHdG9FyXdbTAwH1G4ZPv69sQAFAOCgAqYmdnzedsQtE
22
+ 1LQfaQrx0twO+CZJPcRLEESjq8ScQxWRRkfuh2VeR7cEU7L7KqT10mtUwrvw7APf
23
+ DYoeCY9KyjIBjQXfbj2ke5u1hZj94Fsq9FfbEQg8ygCgwThnmkTrrKEiMSs3alYR
24
+ ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
25
+ WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
21
26
  -----END CERTIFICATE-----
data/highlander.gemspec CHANGED
@@ -2,17 +2,26 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'highlander'
5
- spec.version = '0.2.1'
5
+ spec.version = '0.3.0'
6
6
  spec.license = 'Apache-2.0'
7
7
  spec.author = 'Daniel J. Berger'
8
8
  spec.email = 'djberg96@gmail.com'
9
9
  spec.homepage = 'https://github.com/djberg96/highlander'
10
10
  spec.summary = 'There can be only one! Process, that is.'
11
- spec.test_files = Dir['test/test*']
11
+ spec.test_files = Dir['spec/*.rb']
12
12
  spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
13
13
  spec.cert_chain = ['certs/djberg96_pub.pem']
14
14
 
15
- spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
15
+ spec.add_development_dependency('rspec', '~> 3.11')
16
+
17
+ spec.metadata = {
18
+ 'homepage_uri' => 'https://github.com/djberg96/highlander',
19
+ 'bug_tracker_uri' => 'https://github.com/djberg96/highlander/issues',
20
+ 'changelog_uri' => 'https://github.com/djberg96/highlander/blob/MacLeod/CHANGES.md',
21
+ 'documentation_uri' => 'https://github.com/djberg96/highlander/wiki',
22
+ 'source_code_uri' => 'https://github.com/djberg96/highlander',
23
+ 'wiki_uri' => 'https://github.com/djberg96/highlander/wiki'
24
+ }
16
25
 
17
26
  spec.description = <<-EOF
18
27
  The highlander spec ensures that only one instance of the current
data/lib/highlander.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Highlander
2
2
  # The version of the highlander library
3
- VERSION = '0.2.1'
3
+ VERSION = '0.3.0'.freeze
4
4
  end
5
5
 
6
6
  BEGIN{
@@ -0,0 +1,42 @@
1
+ #######################################################################
2
+ # highlander_spec.rb
3
+ #
4
+ # Test suite for the highlander library.
5
+ #######################################################################
6
+ require 'rspec'
7
+ require 'highlander'
8
+
9
+ RSpec.describe Highlander do
10
+ let(:filename){ 'highlander_test.rb' }
11
+ let(:outfile){ 'highlander_output.txt' }
12
+
13
+ before do
14
+ File.open(filename, 'w') do |fh|
15
+ fh.puts 'require_relative "lib/highlander"'
16
+ fh.puts '3.times{ puts "hello"; sleep 1 }'
17
+ end
18
+ end
19
+
20
+ after do
21
+ File.delete(filename) if File.exist?(filename)
22
+ File.delete(outfile) if File.exist?(outfile)
23
+ end
24
+
25
+ example "version" do
26
+ expect(Highlander::VERSION).to eq('0.3.0')
27
+ expect(Highlander::VERSION).to be_frozen
28
+ end
29
+
30
+ example "attempting to run multiple instances will fail" do
31
+ pid1 = Process.spawn("ruby #{filename}", [:out, :err] => IO::NULL)
32
+ sleep 1 # Make sure pid1 runs first, is there a better way?
33
+ pid2 = Process.spawn("ruby #{filename}", :err => [outfile, 'w'], :out => IO::NULL)
34
+
35
+ status1 = Process.waitpid2(pid1).last
36
+ status2 = Process.waitpid2(pid2).last
37
+
38
+ expect(status1.exitstatus).to eq(0)
39
+ expect(status2.exitstatus).not_to eq(0)
40
+ expect(File.read(outfile)).to include("There can be only one!")
41
+ end
42
+ end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,37 +1,56 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: highlander
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIDcDCCAligAwIBAgIBATANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhkamJl
13
+ MIIEcDCCAtigAwIBAgIBATANBgkqhkiG9w0BAQsFADA/MREwDwYDVQQDDAhkamJl
14
14
  cmc5NjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
15
- MB4XDTE2MTAzMTE4NTcyNVoXDTE3MTAzMTE4NTcyNVowPzERMA8GA1UEAwwIZGpi
15
+ MB4XDTE4MDMxODE1MjIwN1oXDTI4MDMxNTE1MjIwN1owPzERMA8GA1UEAwwIZGpi
16
16
  ZXJnOTYxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
17
- bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwqllig3Tyc29Y3SZgK
18
- fFaApRB5R3l8KkOog3rwqr4Rr8bc8MfAMwHOzfqUMQRF7bPIyd5jLu24tPSC2X8D
19
- SKDS3069iTzTEDSPin90MVes+nd/ngys93lgmJ9DSwpGXQzZ7sWqdaJjzqLqDMhZ
20
- 3LhTRZeMpDA8hyEiX7GmVp+VvhAXQ1pjfoFBmMNrzibUmYXcyllzqfEFcbI31/EK
21
- vlkEmcTKdNyd4aIOFLadZpzVvLxWsxFqi6qwteAwlNk3zxaik6O82iAXq2tcnk8p
22
- asWidshXCiRunncPhVogVYNCS4ISfYD6b/f85T9DsxJ6tsADNfeXnMTRxQcQv+1x
23
- 0l0CAwEAAaN3MHUwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFC3D
24
- p9cyKtYtWUAefeMpMh4kMUP4MB0GA1UdEQQWMBSBEmRqYmVyZzk2QGdtYWlsLmNv
25
- bTAdBgNVHRIEFjAUgRJkamJlcmc5NkBnbWFpbC5jb20wDQYJKoZIhvcNAQEFBQAD
26
- ggEBAEYzyGzoleAO3i6mOBi/Px1yWdVuU4ejvxrj8axHRK+wHQ+bYvx9eEosuRHB
27
- mXjRvpN9UnOiY7wYbK36MpAALBq3swpcBpYXyfBOdv0JQvjMEGmKqXJS7AbNHNPc
28
- ZbpPrVSdJJ+aTWEDvybl693eEUvEuiSkVIz8w4yNcJP1zOBRBKxG2viJdMKz5Ho7
29
- 2M9INmGCv3GCv4bljYlIIg4YYAyOaBbSQeAb2/F5XAlOR2oEB8ipB+RKGZXR8rq5
30
- EkhPwYAx+jZ4KyPve9JKm34Du9veVFEzq3aW+opaveK167NEorK7xLpmdEcdo9bR
31
- 9CkYV0lClarK7w1ykAePuEeXD7k=
17
+ bTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBALgfaroVM6CI06cxr0/h
18
+ A+j+pc8fgpRgBVmHFaFunq28GPC3IvW7Nvc3Y8SnAW7pP1EQIbhlwRIaQzJ93/yj
19
+ u95KpkP7tA9erypnV7dpzBkzNlX14ACaFD/6pHoXoe2ltBxk3CCyyzx70mTqJpph
20
+ 75IB03ni9a8yqn8pmse+s83bFJOAqddSj009sGPcQO+QOWiNxqYv1n5EHcvj2ebO
21
+ 6hN7YTmhx7aSia4qL/quc4DlIaGMWoAhvML7u1fmo53CYxkKskfN8MOecq2vfEmL
22
+ iLu+SsVVEAufMDDFMXMJlvDsviolUSGMSNRTujkyCcJoXKYYxZSNtIiyd9etI0X3
23
+ ctu0uhrFyrMZXCedutvXNjUolD5r9KGBFSWH1R9u2I3n3SAyFF2yzv/7idQHLJJq
24
+ 74BMnx0FIq6fCpu5slAipvxZ3ZkZpEXZFr3cIBtO1gFvQWW7E/Y3ijliWJS1GQFq
25
+ 058qERadHGu1yu1dojmFRo6W2KZvY9al2yIlbkpDrD5MYQIDAQABo3cwdTAJBgNV
26
+ HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUFZsMapgzJimzsbaBG2Tm8j5e
27
+ AzgwHQYDVR0RBBYwFIESZGpiZXJnOTZAZ21haWwuY29tMB0GA1UdEgQWMBSBEmRq
28
+ YmVyZzk2QGdtYWlsLmNvbTANBgkqhkiG9w0BAQsFAAOCAYEAW2tnYixXQtKxgGXq
29
+ /3iSWG2bLwvxS4go3srO+aRXZHrFUMlJ5W0mCxl03aazxxKTsVVpZD8QZxvK91OQ
30
+ h9zr9JBYqCLcCVbr8SkmYCi/laxIZxsNE5YI8cC8vvlLI7AMgSfPSnn/Epq1GjGY
31
+ 6L1iRcEDtanGCIvjqlCXO9+BmsnCfEVehqZkQHeYczA03tpOWb6pon2wzvMKSsKH
32
+ ks0ApVdstSLz1kzzAqem/uHdG9FyXdbTAwH1G4ZPv69sQAFAOCgAqYmdnzedsQtE
33
+ 1LQfaQrx0twO+CZJPcRLEESjq8ScQxWRRkfuh2VeR7cEU7L7KqT10mtUwrvw7APf
34
+ DYoeCY9KyjIBjQXfbj2ke5u1hZj94Fsq9FfbEQg8ygCgwThnmkTrrKEiMSs3alYR
35
+ ORVCZpRuCPpmC8qmqxUnARDArzucjaclkxjLWvCVHeFa9UP7K3Nl9oTjJNv+7/jM
36
+ WZs4eecIcUc4tKdHxcAJ0MO/Dkqq7hGaiHpwKY76wQ1+8xAh
32
37
  -----END CERTIFICATE-----
33
- date: 2017-02-02 00:00:00.000000000 Z
34
- dependencies: []
38
+ date: 2022-06-05 00:00:00.000000000 Z
39
+ dependencies:
40
+ - !ruby/object:Gem::Dependency
41
+ name: rspec
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.11'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.11'
35
54
  description: |2
36
55
  The highlander spec ensures that only one instance of the current
37
56
  process is running. If you try to run the same Ruby program again
@@ -39,24 +58,29 @@ description: |2
39
58
  email: djberg96@gmail.com
40
59
  executables: []
41
60
  extensions: []
42
- extra_rdoc_files:
43
- - README
44
- - CHANGES
45
- - MANIFEST
61
+ extra_rdoc_files: []
46
62
  files:
47
- - CHANGES
48
- - MANIFEST
49
- - README
63
+ - CHANGES.md
64
+ - Gemfile
65
+ - LICENSE
66
+ - MANIFEST.md
67
+ - README.md
50
68
  - Rakefile
51
69
  - certs/djberg96_pub.pem
52
70
  - highlander.gemspec
53
71
  - lib/highlander.rb
54
- - test/test_highlander.rb
72
+ - spec/highlander_spec.rb
55
73
  homepage: https://github.com/djberg96/highlander
56
74
  licenses:
57
75
  - Apache-2.0
58
- metadata: {}
59
- post_install_message:
76
+ metadata:
77
+ homepage_uri: https://github.com/djberg96/highlander
78
+ bug_tracker_uri: https://github.com/djberg96/highlander/issues
79
+ changelog_uri: https://github.com/djberg96/highlander/blob/MacLeod/CHANGES.md
80
+ documentation_uri: https://github.com/djberg96/highlander/wiki
81
+ source_code_uri: https://github.com/djberg96/highlander
82
+ wiki_uri: https://github.com/djberg96/highlander/wiki
83
+ post_install_message:
60
84
  rdoc_options: []
61
85
  require_paths:
62
86
  - lib
@@ -71,10 +95,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
95
  - !ruby/object:Gem::Version
72
96
  version: '0'
73
97
  requirements: []
74
- rubyforge_project:
75
- rubygems_version: 2.6.8
76
- signing_key:
98
+ rubygems_version: 3.3.15
99
+ signing_key:
77
100
  specification_version: 4
78
101
  summary: There can be only one! Process, that is.
79
102
  test_files:
80
- - test/test_highlander.rb
103
+ - spec/highlander_spec.rb
metadata.gz.sig CHANGED
Binary file
data/README DELETED
@@ -1,45 +0,0 @@
1
- = Description
2
- A gem that ensures only one instance of your main script is running.
3
- In short, there can be only one.
4
-
5
- = Installation
6
- gem install highlander
7
-
8
- = Synopsis
9
- require 'highlander' # This should be the -first- thing in your code.
10
- # Your code here
11
-
12
- # Meanwhile, back on the command line...
13
-
14
- # First attempt, works. Assume it's running in the background.
15
- ruby your_script.rb
16
-
17
- # Second attempt while the first instance is still running, fails.
18
- ruby your_script.rb # => RuntimeError
19
-
20
- = Notes
21
- Simply requiring the highlander gem ensures that only one instance
22
- of that script cannot be started again. If you try to start it again
23
- it will raise a RuntimeError.
24
-
25
- = Known Issues
26
- If you start your program, modify it while its running, and run it again
27
- then this library will not work.
28
-
29
- = Acknowledgements
30
- Ara Howard for ideas.
31
-
32
- = License
33
- Apache 2.0
34
-
35
- = Copyright
36
- (C) 2010-2015 Daniel J. Berger
37
- All Rights Reserved.
38
-
39
- == Warranty
40
- This package is provided "as is" and without any express or
41
- implied warranties, including, without limitation, the implied
42
- warranties of merchantability and fitness for a particular purpose.
43
-
44
- = Author
45
- Daniel Berger
@@ -1,14 +0,0 @@
1
- #######################################################################
2
- # test_highlander.rb
3
- #
4
- # Test suite for the highlander gem. Easier to test on the command
5
- # line than with a formal test suite, hence the sparseness here.
6
- #######################################################################
7
- require 'test/unit'
8
- require 'highlander'
9
-
10
- class TC_Highlander < Test::Unit::TestCase
11
- def test_version
12
- assert_equal("0.2.1", Highlander::VERSION)
13
- end
14
- end