officer 0.7.3 → 0.7.4
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/Rakefile +4 -4
- data/VERSION +1 -1
- data/officer.gemspec +26 -28
- metadata +51 -24
- data/.gitignore +0 -21
data/Rakefile
CHANGED
|
@@ -10,10 +10,10 @@ begin
|
|
|
10
10
|
gem.email = "chad@remesch.com"
|
|
11
11
|
gem.homepage = "http://github.com/chadrem/officer"
|
|
12
12
|
gem.authors = ["Chad Remesch"]
|
|
13
|
-
gem.
|
|
14
|
-
gem.
|
|
15
|
-
gem.
|
|
16
|
-
gem.
|
|
13
|
+
gem.add_dependency "eventmachine", ">= 0"
|
|
14
|
+
gem.add_dependency "json", ">= 0"
|
|
15
|
+
gem.add_dependency "daemons", ">= 0"
|
|
16
|
+
gem.add_dependency "choice", ">= 0"
|
|
17
17
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
18
18
|
end
|
|
19
19
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.4
|
data/officer.gemspec
CHANGED
|
@@ -1,61 +1,59 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{officer}
|
|
8
|
-
s.version = "0.7.
|
|
8
|
+
s.version = "0.7.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Chad Remesch"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-01-20}
|
|
13
13
|
s.default_executable = %q{officer}
|
|
14
14
|
s.description = %q{Distributed lock server and client written in Ruby and EventMachine}
|
|
15
15
|
s.email = %q{chad@remesch.com}
|
|
16
16
|
s.executables = ["officer"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
18
|
"LICENSE",
|
|
19
|
-
|
|
19
|
+
"README.markdown"
|
|
20
20
|
]
|
|
21
21
|
s.files = [
|
|
22
22
|
".document",
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"test/test_officer.rb"
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"README.markdown",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"bin/officer",
|
|
28
|
+
"lib/officer.rb",
|
|
29
|
+
"lib/officer/client.rb",
|
|
30
|
+
"lib/officer/commands.rb",
|
|
31
|
+
"lib/officer/connection.rb",
|
|
32
|
+
"lib/officer/lock_store.rb",
|
|
33
|
+
"lib/officer/log.rb",
|
|
34
|
+
"lib/officer/server.rb",
|
|
35
|
+
"officer.gemspec",
|
|
36
|
+
"test/helper.rb",
|
|
37
|
+
"test/test_officer.rb"
|
|
39
38
|
]
|
|
40
39
|
s.homepage = %q{http://github.com/chadrem/officer}
|
|
41
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
42
40
|
s.require_paths = ["lib"]
|
|
43
|
-
s.rubygems_version = %q{1.3.
|
|
41
|
+
s.rubygems_version = %q{1.3.7}
|
|
44
42
|
s.summary = %q{Distributed lock server and client}
|
|
45
43
|
s.test_files = [
|
|
46
44
|
"test/helper.rb",
|
|
47
|
-
|
|
45
|
+
"test/test_officer.rb"
|
|
48
46
|
]
|
|
49
47
|
|
|
50
48
|
if s.respond_to? :specification_version then
|
|
51
49
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
52
50
|
s.specification_version = 3
|
|
53
51
|
|
|
54
|
-
if Gem::Version.new(Gem::
|
|
55
|
-
s.
|
|
56
|
-
s.
|
|
57
|
-
s.
|
|
58
|
-
s.
|
|
52
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
53
|
+
s.add_runtime_dependency(%q<eventmachine>, [">= 0"])
|
|
54
|
+
s.add_runtime_dependency(%q<json>, [">= 0"])
|
|
55
|
+
s.add_runtime_dependency(%q<daemons>, [">= 0"])
|
|
56
|
+
s.add_runtime_dependency(%q<choice>, [">= 0"])
|
|
59
57
|
else
|
|
60
58
|
s.add_dependency(%q<eventmachine>, [">= 0"])
|
|
61
59
|
s.add_dependency(%q<json>, [">= 0"])
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: officer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 11
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 7
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.7.4
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Chad Remesch
|
|
@@ -9,49 +15,65 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date:
|
|
18
|
+
date: 2011-01-20 00:00:00 -05:00
|
|
13
19
|
default_executable: officer
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: eventmachine
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - ">="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
23
32
|
version: "0"
|
|
24
|
-
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
25
35
|
- !ruby/object:Gem::Dependency
|
|
26
36
|
name: json
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
30
40
|
requirements:
|
|
31
41
|
- - ">="
|
|
32
42
|
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 3
|
|
44
|
+
segments:
|
|
45
|
+
- 0
|
|
33
46
|
version: "0"
|
|
34
|
-
|
|
47
|
+
type: :runtime
|
|
48
|
+
version_requirements: *id002
|
|
35
49
|
- !ruby/object:Gem::Dependency
|
|
36
50
|
name: daemons
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
51
|
+
prerelease: false
|
|
52
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
53
|
+
none: false
|
|
40
54
|
requirements:
|
|
41
55
|
- - ">="
|
|
42
56
|
- !ruby/object:Gem::Version
|
|
57
|
+
hash: 3
|
|
58
|
+
segments:
|
|
59
|
+
- 0
|
|
43
60
|
version: "0"
|
|
44
|
-
|
|
61
|
+
type: :runtime
|
|
62
|
+
version_requirements: *id003
|
|
45
63
|
- !ruby/object:Gem::Dependency
|
|
46
64
|
name: choice
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
65
|
+
prerelease: false
|
|
66
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
67
|
+
none: false
|
|
50
68
|
requirements:
|
|
51
69
|
- - ">="
|
|
52
70
|
- !ruby/object:Gem::Version
|
|
71
|
+
hash: 3
|
|
72
|
+
segments:
|
|
73
|
+
- 0
|
|
53
74
|
version: "0"
|
|
54
|
-
|
|
75
|
+
type: :runtime
|
|
76
|
+
version_requirements: *id004
|
|
55
77
|
description: Distributed lock server and client written in Ruby and EventMachine
|
|
56
78
|
email: chad@remesch.com
|
|
57
79
|
executables:
|
|
@@ -63,7 +85,6 @@ extra_rdoc_files:
|
|
|
63
85
|
- README.markdown
|
|
64
86
|
files:
|
|
65
87
|
- .document
|
|
66
|
-
- .gitignore
|
|
67
88
|
- LICENSE
|
|
68
89
|
- README.markdown
|
|
69
90
|
- Rakefile
|
|
@@ -84,26 +105,32 @@ homepage: http://github.com/chadrem/officer
|
|
|
84
105
|
licenses: []
|
|
85
106
|
|
|
86
107
|
post_install_message:
|
|
87
|
-
rdoc_options:
|
|
88
|
-
|
|
108
|
+
rdoc_options: []
|
|
109
|
+
|
|
89
110
|
require_paths:
|
|
90
111
|
- lib
|
|
91
112
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
92
114
|
requirements:
|
|
93
115
|
- - ">="
|
|
94
116
|
- !ruby/object:Gem::Version
|
|
117
|
+
hash: 3
|
|
118
|
+
segments:
|
|
119
|
+
- 0
|
|
95
120
|
version: "0"
|
|
96
|
-
version:
|
|
97
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
|
+
none: false
|
|
98
123
|
requirements:
|
|
99
124
|
- - ">="
|
|
100
125
|
- !ruby/object:Gem::Version
|
|
126
|
+
hash: 3
|
|
127
|
+
segments:
|
|
128
|
+
- 0
|
|
101
129
|
version: "0"
|
|
102
|
-
version:
|
|
103
130
|
requirements: []
|
|
104
131
|
|
|
105
132
|
rubyforge_project:
|
|
106
|
-
rubygems_version: 1.3.
|
|
133
|
+
rubygems_version: 1.3.7
|
|
107
134
|
signing_key:
|
|
108
135
|
specification_version: 3
|
|
109
136
|
summary: Distributed lock server and client
|