forked from wbzyl/nosql-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnosql-tutorial.gemspec
27 lines (22 loc) · 939 Bytes
/
nosql-tutorial.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "nosql-tutorial"
s.version = "1.0.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Włodek Bzyl"]
s.email = ["[email protected]"]
s.homepage = "http://inf.ug.edu.pl/~wbzyl"
s.summary = %q{Notatki do wykładu „NoSQL data persistence”}
s.description = %q{Notatki do wykładu „NoSQL data persistence”. 2010/2011}
s.rubyforge_project = "nosql-tutorial"
s.add_runtime_dependency 'rack'
s.add_runtime_dependency 'sinatra'
s.add_runtime_dependency 'rdiscount'
s.add_runtime_dependency 'erubis'
s.add_runtime_dependency 'coderay'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end