pbosetti-rosar 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +0 -0
- data/rosar.gemspec +22 -0
- metadata +65 -0
data/README
ADDED
File without changes
|
data/rosar.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
spec = Gem::Specification.new do |s|
|
2
|
+
s.name = "rosar"
|
3
|
+
s.version = "0.0.3"
|
4
|
+
s.date = "2009-03-19"
|
5
|
+
s.summary = "Ruby to R via OSA."
|
6
|
+
s.email = "paolo.bosetti@me.com"
|
7
|
+
#s.homepage = "http://www.example.com"
|
8
|
+
s.description = %{Ruby/GNU-R interface that uses OSA under OS X.}
|
9
|
+
s.authors = ['Paolo Bosetti']
|
10
|
+
# the lib path is added to the LOAD_PATH
|
11
|
+
s.require_path = "lib"
|
12
|
+
# include Rakefile, gemspec, README and all the source files
|
13
|
+
s.files = ["rosar.gemspec", "README"] +
|
14
|
+
Dir.glob("lib/**/*")
|
15
|
+
# include tests and specs
|
16
|
+
s.test_files = Dir.glob("{test,spect}/**/*")
|
17
|
+
# include README while generating rdoc
|
18
|
+
s.rdoc_options = ["--main", "README"]
|
19
|
+
s.has_rdoc = true
|
20
|
+
s.extra_rdoc_files = ["README"]
|
21
|
+
s.add_dependency ['rbosa']
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pbosetti-rosar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.3
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Paolo Bosetti
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-03-19 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name:
|
17
|
+
- rbosa
|
18
|
+
type: :runtime
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: "0"
|
25
|
+
version:
|
26
|
+
description: Ruby/GNU-R interface that uses OSA under OS X.
|
27
|
+
email: paolo.bosetti@me.com
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files:
|
33
|
+
- README
|
34
|
+
files:
|
35
|
+
- rosar.gemspec
|
36
|
+
- README
|
37
|
+
has_rdoc: true
|
38
|
+
homepage:
|
39
|
+
post_install_message:
|
40
|
+
rdoc_options:
|
41
|
+
- --main
|
42
|
+
- README
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: "0"
|
50
|
+
version:
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: "0"
|
56
|
+
version:
|
57
|
+
requirements: []
|
58
|
+
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 1.2.0
|
61
|
+
signing_key:
|
62
|
+
specification_version: 2
|
63
|
+
summary: Ruby to R via OSA.
|
64
|
+
test_files: []
|
65
|
+
|