rufus-cloche 0.1.6 → 0.1.7
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/CHANGELOG.txt +5 -0
- data/Rakefile +5 -4
- data/lib/rufus/cloche.rb +1 -1
- data/rufus-cloche.gemspec +63 -0
- metadata +3 -12
data/CHANGELOG.txt
CHANGED
data/Rakefile
CHANGED
|
@@ -38,8 +38,9 @@ Strives to be process-safe and thread-safe.
|
|
|
38
38
|
|
|
39
39
|
gem.test_file = 'test/test.rb'
|
|
40
40
|
|
|
41
|
-
gem.add_dependency 'yajl-ruby'
|
|
42
|
-
gem.
|
|
41
|
+
#gem.add_dependency 'yajl-ruby'
|
|
42
|
+
#gem.add_dependency 'json'
|
|
43
|
+
gem.add_development_dependency 'yard', '>= 0'
|
|
43
44
|
|
|
44
45
|
# gemspec spec : http://www.rubygems.org/read/chapter/20
|
|
45
46
|
end
|
|
@@ -62,7 +63,7 @@ begin
|
|
|
62
63
|
|
|
63
64
|
rescue LoadError
|
|
64
65
|
|
|
65
|
-
task :
|
|
66
|
+
task :yard do
|
|
66
67
|
abort "YARD is not available : sudo gem install yard"
|
|
67
68
|
end
|
|
68
69
|
end
|
|
@@ -71,7 +72,7 @@ end
|
|
|
71
72
|
#
|
|
72
73
|
# TO THE WEB
|
|
73
74
|
|
|
74
|
-
task :upload_website => [ :clean, :
|
|
75
|
+
task :upload_website => [ :clean, :yard ] do
|
|
75
76
|
|
|
76
77
|
account = 'jmettraux@rubyforge.org'
|
|
77
78
|
webdir = '/var/www/gforge-projects/rufus'
|
data/lib/rufus/cloche.rb
CHANGED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{rufus-cloche}
|
|
8
|
+
s.version = "0.1.7"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["John Mettraux"]
|
|
12
|
+
s.date = %q{2009-12-24}
|
|
13
|
+
s.description = %q{
|
|
14
|
+
A very stupid JSON hash store.
|
|
15
|
+
|
|
16
|
+
It's built on top of yajl-ruby and File.lock. Defaults to 'json' (or 'json_pure') if yajl-ruby is not present (it's probably just a "gem install yajl-ruby" away.
|
|
17
|
+
|
|
18
|
+
Strives to be process-safe and thread-safe.
|
|
19
|
+
}
|
|
20
|
+
s.email = %q{jmettraux@gmail.com}
|
|
21
|
+
s.extra_rdoc_files = [
|
|
22
|
+
"LICENSE.txt",
|
|
23
|
+
"README.rdoc"
|
|
24
|
+
]
|
|
25
|
+
s.files = [
|
|
26
|
+
"CHANGELOG.txt",
|
|
27
|
+
"CREDITS.txt",
|
|
28
|
+
"LICENSE.txt",
|
|
29
|
+
"README.rdoc",
|
|
30
|
+
"Rakefile",
|
|
31
|
+
"TODO.txt",
|
|
32
|
+
"lib/rufus-cloche.rb",
|
|
33
|
+
"lib/rufus/cloche.rb",
|
|
34
|
+
"rufus-cloche.gemspec",
|
|
35
|
+
"test/bm/bm0.rb",
|
|
36
|
+
"test/ct_worker.rb",
|
|
37
|
+
"test/ct_writer.rb",
|
|
38
|
+
"test/test.rb"
|
|
39
|
+
]
|
|
40
|
+
s.homepage = %q{http://github.com/jmettraux/rufus-cloche/}
|
|
41
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
42
|
+
s.require_paths = ["lib"]
|
|
43
|
+
s.rubyforge_project = %q{rufus}
|
|
44
|
+
s.rubygems_version = %q{1.3.5}
|
|
45
|
+
s.summary = %q{a very stupid JSON hash store}
|
|
46
|
+
s.test_files = [
|
|
47
|
+
"test/test.rb"
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
if s.respond_to? :specification_version then
|
|
51
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
52
|
+
s.specification_version = 3
|
|
53
|
+
|
|
54
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
55
|
+
s.add_development_dependency(%q<yard>, [">= 0"])
|
|
56
|
+
else
|
|
57
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
58
|
+
end
|
|
59
|
+
else
|
|
60
|
+
s.add_dependency(%q<yard>, [">= 0"])
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rufus-cloche
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Mettraux
|
|
@@ -9,19 +9,9 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-12-
|
|
12
|
+
date: 2009-12-24 00:00:00 +09:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
-
- !ruby/object:Gem::Dependency
|
|
16
|
-
name: yajl-ruby
|
|
17
|
-
type: :runtime
|
|
18
|
-
version_requirement:
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
-
requirements:
|
|
21
|
-
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version: "0"
|
|
24
|
-
version:
|
|
25
15
|
- !ruby/object:Gem::Dependency
|
|
26
16
|
name: yard
|
|
27
17
|
type: :development
|
|
@@ -53,6 +43,7 @@ files:
|
|
|
53
43
|
- TODO.txt
|
|
54
44
|
- lib/rufus-cloche.rb
|
|
55
45
|
- lib/rufus/cloche.rb
|
|
46
|
+
- rufus-cloche.gemspec
|
|
56
47
|
- test/bm/bm0.rb
|
|
57
48
|
- test/ct_worker.rb
|
|
58
49
|
- test/ct_writer.rb
|