orbit 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ Gem::Specification.new do |s|
2
+ s.platform = Gem::Platform::RUBY
3
+ s.name = 'orbit'
4
+ s.version = '0.8.0'
5
+ s.authors = ["Jeff McFadden"]
6
+ s.email = ["jeff@forgeapps.com"]
7
+ s.homepage = "http://github.com/jeffmcfadden/orbit"
8
+ s.summary = "A ruby gem for calculating satellite positional data."
9
+ s.description = "A ruby gem for calculating satellite positional data and look angles, etc."
10
+
11
+ s.required_ruby_version = '>= 1.9.2'
12
+
13
+ s.files = `git ls-files`.split("\n")
14
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
+ s.require_path = 'lib'
16
+ s.requirements << 'none'
17
+ end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: orbit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jeff McFadden
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-09-23 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: A ruby gem for calculating satellite positional data and look angles,
15
+ etc.
16
+ email:
17
+ - jeff@forgeapps.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - .gitignore
23
+ - Gemfile
24
+ - Gemfile.lock
25
+ - README.md
26
+ - lib/orbit.rb
27
+ - lib/orbit/demo.rb
28
+ - lib/orbit/eci.rb
29
+ - lib/orbit/geocentric_coordinates.rb
30
+ - lib/orbit/julian.rb
31
+ - lib/orbit/norad_base.rb
32
+ - lib/orbit/norad_sdp4.rb
33
+ - lib/orbit/norad_sgp4.rb
34
+ - lib/orbit/orbit.rb
35
+ - lib/orbit/orbit_globals.rb
36
+ - lib/orbit/satellite.rb
37
+ - lib/orbit/site.rb
38
+ - lib/orbit/tle.rb
39
+ - lib/orbit/topocentric_horizon_coordinates.rb
40
+ - lib/orbit/vector.rb
41
+ - orbit.gemspec
42
+ homepage: http://github.com/jeffmcfadden/orbit
43
+ licenses: []
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: 1.9.2
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements:
61
+ - none
62
+ rubyforge_project:
63
+ rubygems_version: 1.8.23
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: A ruby gem for calculating satellite positional data.
67
+ test_files: []