forked from raskhadafi/bookyt_projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookyt_projects.gemspec
52 lines (45 loc) · 1.69 KB
/
bookyt_projects.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
41
42
43
44
45
46
47
48
49
50
51
52
# encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'bookyt_projects/version'
Gem::Specification.new do |s|
# Description
s.name = "bookyt_projects"
s.version = BookytPos::VERSION
s.summary = "Project management plugin for bookyt"
s.description = "This plugin extends bookyt with project management functionality."
s.homepage = "https://github.com/raskhadafi/bookyt_projects"
s.authors = ["Roman Simecek (CyT)", "Simon Hürlimann (CyT)"]
s.email = ["[email protected]", "[email protected]"]
s.licenses = ["MIT"]
# Files
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = `git ls-files app lib config db`.split("\n")
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
# Dependencies
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, ["~> 3.1"])
s.add_runtime_dependency(%q<recurrence>, [">= 0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<rcov>, [">= 0"])
s.add_development_dependency(%q<rspec-rails>)
else
s.add_dependency(%q<rails>, ["~> 3.1"])
s.add_dependency(%q<recurrence>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<rspec-rails>)
end
else
s.add_dependency(%q<rails>, ["~> 3.1"])
s.add_dependency(%q<recurrence>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<rcov>, [">= 0"])
s.add_dependency(%q<rspec-rails>)
end
end