wcs 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/{libdoc.rb → lib/wcs/libdoc.rb} +0 -0
- data/lib/wcs/version.rb +1 -1
- data/wcs.gemspec +2 -3
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d05d7ad45c2129e7f4c6e8b032072ac4d5849f7a
|
|
4
|
+
data.tar.gz: 34df92539c4c3f9aba2e36e4549f7b828ca9a33f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b22d2b13f0aea26587f9f1c95126a63581e06aa8f8b8c1c710d56df3868dac53370de273f3ddeae7a251b1034dd11b26ab6a1e0962fb12bea251052e000d572
|
|
7
|
+
data.tar.gz: 69d5f6852d84c48044a69a9cdd569ebc7b914c01e62fb740103e25825e633b8e082c73c45128980f9b1d408d27ea086136c4501d7d1b5ae0fbcb93df0921b81d
|
|
File without changes
|
data/lib/wcs/version.rb
CHANGED
data/wcs.gemspec
CHANGED
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["masa16.tanaka@gmail.com"]
|
|
11
11
|
spec.description = %q{WCSTools wrapper for Ruby. Provides calculation and conversion of sky positions in astronomical coordinates.}
|
|
12
12
|
spec.summary = %q{WCSTools wrapper for Ruby. Provides calculation and conversion of sky positions in astronomical coordinates.}
|
|
13
|
-
spec.homepage = ""
|
|
14
|
-
spec.license = "
|
|
13
|
+
spec.homepage = "https://github.com/masa16/ruby-wcs"
|
|
14
|
+
spec.license = "LGPL"
|
|
15
15
|
spec.extensions = ["ext/extconf.rb"]
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files`.split($/)
|
|
@@ -23,7 +23,6 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.add_development_dependency "rake"
|
|
24
24
|
|
|
25
25
|
spec.rdoc_options = %w[
|
|
26
|
-
libdoc.rb
|
|
27
26
|
--exclude doc/
|
|
28
27
|
--exclude lib/wcs.so
|
|
29
28
|
--exclude ext/
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wcs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masahiro TANAKA
|
|
@@ -57,19 +57,18 @@ files:
|
|
|
57
57
|
- ext/wcs.i
|
|
58
58
|
- ext/wcs_h.i
|
|
59
59
|
- ext/wcs_wrap.c
|
|
60
|
+
- lib/wcs/libdoc.rb
|
|
60
61
|
- lib/wcs/version.rb
|
|
61
|
-
- libdoc.rb
|
|
62
62
|
- setup.rb
|
|
63
63
|
- spec/wcs_spec.rb
|
|
64
64
|
- test.rb
|
|
65
65
|
- wcs.gemspec
|
|
66
|
-
homepage:
|
|
66
|
+
homepage: https://github.com/masa16/ruby-wcs
|
|
67
67
|
licenses:
|
|
68
|
-
-
|
|
68
|
+
- LGPL
|
|
69
69
|
metadata: {}
|
|
70
70
|
post_install_message:
|
|
71
71
|
rdoc_options:
|
|
72
|
-
- libdoc.rb
|
|
73
72
|
- --exclude
|
|
74
73
|
- doc/
|
|
75
74
|
- --exclude
|