-
Notifications
You must be signed in to change notification settings - Fork 4
/
bio-gem.gemspec
96 lines (91 loc) · 3.45 KB
/
bio-gem.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: bio-gem 1.3.6 ruby lib
Gem::Specification.new do |s|
s.name = "bio-gem"
s.version = "1.3.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Raoul J.P. Bonnal", "Pjotr Prins"]
s.date = "2014-05-20"
s.description = "Biogem is a software generator for those bioinformaticans who want to start coding an application or a library for using/extending BioRuby core library and sharing it through rubygems.org .\n The basic idea is to simplify and promote a modular approach to bioinformatics software development"
s.email = "[email protected]"
s.executables = ["biogem"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc",
"Tutorial.rdoc"
]
s.files = [
".document",
".travis.yml",
".yardopts",
"Gemfile",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"Tutorial.rdoc",
"VERSION",
"bin/biogem",
"bio-gem.gemspec",
"doc/biogem-hacking.md",
"doc/integration-testing.md",
"lib/bio-gem.rb",
"lib/bio-gem/application.rb",
"lib/bio-gem/generator/render.rb",
"lib/bio-gem/mod/biogem-rails.rb",
"lib/bio-gem/mod/biogem.rb",
"lib/bio-gem/mod/jeweler.rb",
"lib/bio-gem/mod/jeweler/github_mixin.rb",
"lib/bio-gem/mod/jeweler/options.rb",
"lib/bio-gem/templates/README.md",
"lib/bio-gem/templates/README.rdoc",
"lib/bio-gem/templates/bin/bio-plugin",
"lib/bio-gem/templates/database",
"lib/bio-gem/templates/db_connection",
"lib/bio-gem/templates/db_model",
"lib/bio-gem/templates/engine",
"lib/bio-gem/templates/ffi/ext.c",
"lib/bio-gem/templates/ffi/ext.h",
"lib/bio-gem/templates/foos_controller",
"lib/bio-gem/templates/foos_view_example",
"lib/bio-gem/templates/foos_view_index",
"lib/bio-gem/templates/foos_view_new",
"lib/bio-gem/templates/foos_view_show",
"lib/bio-gem/templates/gitignore",
"lib/bio-gem/templates/lib/bioruby-plugin.rb",
"lib/bio-gem/templates/lib/plugin.rb",
"lib/bio-gem/templates/library",
"lib/bio-gem/templates/migration",
"lib/bio-gem/templates/rakefile",
"lib/bio-gem/templates/routes",
"lib/bio-gem/templates/seeds",
"lib/bio-gem/templates/travis.yml",
"test/helper.rb",
"test/test_bio-gem.rb"
]
s.homepage = "http://github.com/helios/bioruby-gem"
s.licenses = ["MIT"]
s.rdoc_options = ["--main", "README", "--line-numbers"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.rubygems_version = "2.2.1"
s.summary = "Biogem is a software generator for Ruby in bioinformatics"
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<bundler>, [">= 1.6.2", "~> 1.6"])
s.add_runtime_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
s.add_runtime_dependency(%q<rdoc>, [">= 4.1.1", "~> 4.1.1"])
else
s.add_dependency(%q<bundler>, [">= 1.6.2", "~> 1.6"])
s.add_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
s.add_dependency(%q<rdoc>, [">= 4.1.1", "~> 4.1.1"])
end
else
s.add_dependency(%q<bundler>, [">= 1.6.2", "~> 1.6"])
s.add_dependency(%q<jeweler>, [">= 2.0.1", "~> 2.0"])
s.add_dependency(%q<rdoc>, [">= 4.1.1", "~> 4.1.1"])
end
end