rfits 0.0.1
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/Rakefile.rb +92 -0
- data/lib/rfits.rb +1 -0
- data/lib/rfits/ext/extconf.rb +7 -0
- data/lib/rfits/ext/rfitsio.c +2797 -0
- data/lib/rfits/rfits.rb +1328 -0
- data/test/rfits_test.rb +310 -0
- data/test/rfitsio_test.rb +315 -0
- data/test/test.1.fits +7522 -2
- data/test/test.2.fits +1796 -0
- metadata +55 -0
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.3
|
3
|
+
specification_version: 1
|
4
|
+
name: rfits
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2007-10-30 00:00:00 -07:00
|
8
|
+
summary: Routines for manipulating FITS files.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: dgasson@noao.edu
|
12
|
+
homepage:
|
13
|
+
rubyforge_project: rfits
|
14
|
+
description: RFits is a set of routines for reading, writing and manipulating FITS (Flexible Image Transport System) files--the standard image file format in astronomy. It is based on the the well-known CFITSIO library provided by HEASARC (http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html).
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- David Gasson
|
31
|
+
files:
|
32
|
+
- Rakefile.rb
|
33
|
+
- test/rfits_test.rb
|
34
|
+
- test/rfitsio_test.rb
|
35
|
+
- test/test.1.fits
|
36
|
+
- test/test.2.fits
|
37
|
+
- lib/rfits/ext/extconf.rb
|
38
|
+
- lib/rfits/rfits.rb
|
39
|
+
- lib/rfits.rb
|
40
|
+
- lib/rfits/ext/rfitsio.c
|
41
|
+
test_files:
|
42
|
+
- test/rfits_test.rb
|
43
|
+
- test/rfitsio_test.rb
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
extra_rdoc_files: []
|
47
|
+
|
48
|
+
executables: []
|
49
|
+
|
50
|
+
extensions:
|
51
|
+
- lib/rfits/ext/extconf.rb
|
52
|
+
requirements:
|
53
|
+
- cfitsio >= 3.060 from http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html
|
54
|
+
dependencies: []
|
55
|
+
|