-
Notifications
You must be signed in to change notification settings - Fork 11
/
mega_mutex.gemspec
47 lines (43 loc) · 1.32 KB
/
mega_mutex.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{mega_mutex}
s.version = "0.3.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Johnson", "Matt Wynne"]
s.date = %q{2010-02-07}
s.description = %q{Cross-process mutex using redis}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"lib/mega_mutex.rb",
"lib/mega_mutex/distributed_mutex.rb",
"mega_mutex.gemspec",
"spec/lib/mega_mutex_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/songkick/mega_mutex}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Cross-process mutex using redis}
s.test_files = [
"spec/lib/mega_mutex_spec.rb",
"spec/spec_helper.rb"
]
s.add_runtime_dependency(%q<redis>, ["~> 4"])
s.add_runtime_dependency(%q<logging>, [">= 1.1.4"])
s.add_development_dependency("rspec", ["= 1.3.0"])
s.add_development_dependency("rake", [">= 1.0"])
end