miriad 4.1.0.0
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 +103 -0
- data/Rakefile +82 -0
- data/ext/bug.c +341 -0
- data/ext/dio.c +317 -0
- data/ext/extconf.rb +49 -0
- data/ext/headio.c +835 -0
- data/ext/hio.c +1515 -0
- data/ext/hio.h +48 -0
- data/ext/interface.c +74 -0
- data/ext/io.h +56 -0
- data/ext/key.c +934 -0
- data/ext/maskio.c +398 -0
- data/ext/maxdimc.h.in +9 -0
- data/ext/miriad.h +371 -0
- data/ext/miriad.i +464 -0
- data/ext/miriad_ruby.c +602 -0
- data/ext/miriad_ruby.i +443 -0
- data/ext/miriad_wrap.c +4210 -0
- data/ext/narray_ruby.swg +59 -0
- data/ext/pack.c +639 -0
- data/ext/scrio.c +132 -0
- data/ext/sysdep.h +185 -0
- data/ext/uvio.c +4934 -0
- data/ext/xyio.c +476 -0
- data/ext/xyzio.c +2020 -0
- data/lib/miriad.rb +564 -0
- metadata +93 -0
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: miriad
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 4.1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David MacMahon
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-04-17 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: narray
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.5.9
|
23
|
+
version:
|
24
|
+
description: The MIRIAD-Ruby package... 1. Makes MIRIAD datasets accessible from Ruby by wrapping the MIRIAD UVIO routines. 2. Makes Ruby usable with MIRIAD datasets by adding convenience, utility, and astronomy related methods to Ruby classes.
|
25
|
+
email: davidm@astro.berkeley.edu
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions:
|
29
|
+
- ext/extconf.rb
|
30
|
+
extra_rdoc_files:
|
31
|
+
- README
|
32
|
+
- ext/miriad_ruby.c
|
33
|
+
files:
|
34
|
+
- README
|
35
|
+
- Rakefile
|
36
|
+
- lib/miriad.rb
|
37
|
+
- ext/bug.c
|
38
|
+
- ext/dio.c
|
39
|
+
- ext/headio.c
|
40
|
+
- ext/hio.c
|
41
|
+
- ext/interface.c
|
42
|
+
- ext/key.c
|
43
|
+
- ext/maskio.c
|
44
|
+
- ext/miriad_ruby.c
|
45
|
+
- ext/miriad_wrap.c
|
46
|
+
- ext/pack.c
|
47
|
+
- ext/scrio.c
|
48
|
+
- ext/uvio.c
|
49
|
+
- ext/xyio.c
|
50
|
+
- ext/xyzio.c
|
51
|
+
- ext/hio.h
|
52
|
+
- ext/io.h
|
53
|
+
- ext/miriad.h
|
54
|
+
- ext/sysdep.h
|
55
|
+
- ext/miriad.i
|
56
|
+
- ext/miriad_ruby.i
|
57
|
+
- ext/maxdimc.h.in
|
58
|
+
- ext/extconf.rb
|
59
|
+
- ext/narray_ruby.swg
|
60
|
+
has_rdoc: true
|
61
|
+
homepage: http://miriad.rubyforge.org/
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options:
|
64
|
+
- -x
|
65
|
+
- ext/.*.c
|
66
|
+
- -m
|
67
|
+
- README
|
68
|
+
- -t
|
69
|
+
- MIRIAD-Ruby Documentation
|
70
|
+
require_paths:
|
71
|
+
- lib
|
72
|
+
- ext
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.8.6
|
78
|
+
version:
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: "0"
|
84
|
+
version:
|
85
|
+
requirements: []
|
86
|
+
|
87
|
+
rubyforge_project: miriad
|
88
|
+
rubygems_version: 1.1.0
|
89
|
+
signing_key:
|
90
|
+
specification_version: 2
|
91
|
+
summary: Ruby interface to MIRIAD
|
92
|
+
test_files: []
|
93
|
+
|