-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsp-tutorial.gemspec
More file actions
25 lines (21 loc) · 874 Bytes
/
sp-tutorial.gemspec
File metadata and controls
25 lines (21 loc) · 874 Bytes
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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sp-tutorial"
s.version = "1.0.0"
s.platform = Gem::Platform::RUBY
s.authors = ["Włodek Bzyl"]
s.email = ["matwb@ug.edu.pl"]
s.homepage = "http://tao.inf.ug.edu.pl"
s.summary = %q{Notatki do wykładu Środowisko Programisty}
s.description = %q{Notatki do wykładu Środowisko Programisty. 2010/2011}
s.rubyforge_project = "sp-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