tsafe 0.0.0 → 0.0.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/VERSION +1 -1
- data/tsafe.gemspec +60 -0
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.1
|
data/tsafe.gemspec
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{tsafe}
|
|
8
|
+
s.version = "0.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Kasper Johansen"]
|
|
12
|
+
s.date = %q{2012-05-12}
|
|
13
|
+
s.description = %q{Proxy-objects for making another object threadsafe by proxying calls through mutex and method_missing. Monitored array and hash where all methods are going through monitor. Threadsafe class for including into a class that extends another class in order to make it threadsafe.}
|
|
14
|
+
s.email = %q{k@spernj.org}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".rspec",
|
|
22
|
+
"Gemfile",
|
|
23
|
+
"Gemfile.lock",
|
|
24
|
+
"LICENSE.txt",
|
|
25
|
+
"README.rdoc",
|
|
26
|
+
"Rakefile",
|
|
27
|
+
"VERSION",
|
|
28
|
+
"lib/tsafe.rb",
|
|
29
|
+
"spec/spec_helper.rb",
|
|
30
|
+
"spec/tsafe_spec.rb",
|
|
31
|
+
"tsafe.gemspec"
|
|
32
|
+
]
|
|
33
|
+
s.homepage = %q{http://github.com/kaspernj/tsafe}
|
|
34
|
+
s.licenses = ["MIT"]
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubygems_version = %q{1.6.2}
|
|
37
|
+
s.summary = %q{Threadsafe proxy, array, hash and framework for making other classes threadsafe.}
|
|
38
|
+
|
|
39
|
+
if s.respond_to? :specification_version then
|
|
40
|
+
s.specification_version = 3
|
|
41
|
+
|
|
42
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
43
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
44
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
|
45
|
+
s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
|
|
46
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
47
|
+
else
|
|
48
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
49
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
50
|
+
s.add_dependency(%q<bundler>, [">= 1.0.0"])
|
|
51
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
52
|
+
end
|
|
53
|
+
else
|
|
54
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
|
55
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
|
56
|
+
s.add_dependency(%q<bundler>, [">= 1.0.0"])
|
|
57
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: tsafe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Kasper Johansen
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2012-05-
|
|
13
|
+
date: 2012-05-12 00:00:00 +02:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- lib/tsafe.rb
|
|
79
79
|
- spec/spec_helper.rb
|
|
80
80
|
- spec/tsafe_spec.rb
|
|
81
|
+
- tsafe.gemspec
|
|
81
82
|
has_rdoc: true
|
|
82
83
|
homepage: http://github.com/kaspernj/tsafe
|
|
83
84
|
licenses:
|
|
@@ -92,7 +93,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
92
93
|
requirements:
|
|
93
94
|
- - ">="
|
|
94
95
|
- !ruby/object:Gem::Version
|
|
95
|
-
hash:
|
|
96
|
+
hash: 1960429092658754527
|
|
96
97
|
segments:
|
|
97
98
|
- 0
|
|
98
99
|
version: "0"
|