forked from jmettraux/rufus-cloche
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rufus-cloche.gemspec
41 lines (30 loc) · 1.06 KB
/
rufus-cloche.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
Gem::Specification.new do |s|
s.name = 'rufus-cloche'
s.version = File.read(
File.expand_path('../lib/rufus/cloche/version.rb', __FILE__)
).match(/ VERSION *= *['"]([^'"]+)/)[1]
s.platform = Gem::Platform::RUBY
s.authors = [ 'John Mettraux' ]
s.email = [ '[email protected]' ]
s.homepage = 'http://ruote.rubyforge.org'
s.rubyforge_project = 'rufus'
s.summary = 'an open source Ruby workflow engine'
s.description = %{
A very stupid JSON hash store.
}
s.description = %q{
A very stupid JSON hash store.
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.
Strives to be process-safe and thread-safe.
}
#s.files = `git ls-files`.split("\n")
s.files = Dir[
'Rakefile',
'lib/**/*.rb', 'spec/**/*.rb', 'test/**/*.rb',
'*.gemspec', '*.txt', '*.rdoc', '*.md'
]
s.add_runtime_dependency 'rufus-json', '>= 1.0.3'
s.add_development_dependency 'rake'
s.add_development_dependency 'json'
s.require_path = 'lib'
end