single_instance 0.3.0 → 0.3.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.
- data/lib/single_instance/version.rb +1 -1
- data/single_instance.gemspec +2 -2
- metadata +5 -7
data/single_instance.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.version = SingleInstance::VERSION
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
8
8
|
s.authors = ["David Vrensk", "Magnus Enarsson"]
|
|
9
|
-
s.email = ["
|
|
10
|
-
s.homepage = "http://github.com/
|
|
9
|
+
s.email = ["rubygems+single_instance@vrensk.com"]
|
|
10
|
+
s.homepage = "http://github.com/dvrensk/single_instance"
|
|
11
11
|
s.summary = %Q{Ruby Gem that makes sure that only a single instance of a code block or process is running.}
|
|
12
12
|
s.description = "SingleInstance uses an exclusive file lock to allow or block execution of code."
|
|
13
13
|
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: single_instance
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.3.
|
|
5
|
+
version: 0.3.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- David Vrensk
|
|
@@ -11,8 +11,7 @@ autorequire:
|
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
13
|
|
|
14
|
-
date:
|
|
15
|
-
default_executable:
|
|
14
|
+
date: 2013-03-13 00:00:00 Z
|
|
16
15
|
dependencies:
|
|
17
16
|
- !ruby/object:Gem::Dependency
|
|
18
17
|
name: bundler
|
|
@@ -38,7 +37,7 @@ dependencies:
|
|
|
38
37
|
version_requirements: *id002
|
|
39
38
|
description: SingleInstance uses an exclusive file lock to allow or block execution of code.
|
|
40
39
|
email:
|
|
41
|
-
-
|
|
40
|
+
- rubygems+single_instance@vrensk.com
|
|
42
41
|
executables:
|
|
43
42
|
- single_instance
|
|
44
43
|
extensions: []
|
|
@@ -60,8 +59,7 @@ files:
|
|
|
60
59
|
- single_instance.gemspec
|
|
61
60
|
- test/helper.rb
|
|
62
61
|
- test/test_single_instance.rb
|
|
63
|
-
|
|
64
|
-
homepage: http://github.com/icehouse/single_instance
|
|
62
|
+
homepage: http://github.com/dvrensk/single_instance
|
|
65
63
|
licenses: []
|
|
66
64
|
|
|
67
65
|
post_install_message:
|
|
@@ -84,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
84
82
|
requirements: []
|
|
85
83
|
|
|
86
84
|
rubyforge_project: single_instance
|
|
87
|
-
rubygems_version: 1.
|
|
85
|
+
rubygems_version: 1.8.24
|
|
88
86
|
signing_key:
|
|
89
87
|
specification_version: 3
|
|
90
88
|
summary: Ruby Gem that makes sure that only a single instance of a code block or process is running.
|