forked from georgi/git_store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit_store.gemspec
40 lines (39 loc) · 1.04 KB
/
git_store.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
Gem::Specification.new do |s|
s.name = 'git_store'
s.version = '0.3.2'
s.summary = 'a simple data store based on git'
s.author = 'Matthias Georgi'
s.email = '[email protected]'
s.homepage = 'http://ww.matthias-georgi.de/git_store'
s.description = <<END
GitStore implements a versioned data store based on the revision
management system Git. You can store object hierarchies as nested
hashes, which will be mapped on the directory structure of a git
repository. GitStore checks out the repository into a in-memory
representation, which can be modified and finally committed.
END
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = ['README.md']
s.files = %w{
.gitignore
LICENSE
README.md
Rakefile
git_store.gemspec
lib/git_store.rb
lib/git_store/blob.rb
lib/git_store/commit.rb
lib/git_store/diff.rb
lib/git_store/handlers.rb
lib/git_store/pack.rb
lib/git_store/tag.rb
lib/git_store/tree.rb
lib/git_store/user.rb
test/bare_store_spec.rb
test/benchmark.rb
test/commit_spec.rb
test/git_store_spec.rb
test/tree_spec.rb
}
end