iers 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: fc31ab2d8d7c623f16a33f1092ae9e0713ab9a9f785d0c86b4ffec022d2ab779
4
+ data.tar.gz: 5a1d2262a36a36d488f553f66ef5e7a79053aa4c319dbc678cb61d672f00f7a8
5
+ SHA512:
6
+ metadata.gz: b669b6e70cb16c915d0c23323a900306164c3da7c7b7c3abe8d9863872c0fdd4b89860fa6d84e0c85b6ad47002c0b9bb35eb5c0166ec6d0b096f9b23a63941df
7
+ data.tar.gz: 13f68ed59f48f60de2ce141cf630d4086c565e482062025bf6c104cb31f3167097975ae0f0c036c94a553103f76e9a70b4d77a58b900552bedde8a9efbb249ee
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.0.1 - 2026-02-24
4
+
5
+ - Initial release
@@ -0,0 +1,16 @@
1
+ # Code of Conduct
2
+
3
+ "iers" follows
4
+ [The Ruby Community Conduct Guideline](https://www.ruby-lang.org/en/conduct) in
5
+ all "collaborative space", which is defined as community communications channels
6
+ (such as mailing lists, submitted patches, commit comments, etc.):
7
+
8
+ - Participants will be tolerant of opposing views.
9
+ - Participants must ensure that their language and actions are free of personal
10
+ attacks and disparaging personal remarks.
11
+ - When interpreting the words and actions of others, participants should always
12
+ assume good intentions.
13
+ - Behaviour which can be reasonably considered harassment will not be tolerated.
14
+
15
+ If you have any concerns about behaviour within this project, please contact us
16
+ at [remy.hannequin@gmail.com](mailto:remy.hannequin@gmail.com).
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 Rémy Hannequin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # IERS
2
+
3
+ [![Tests](https://github.com/rhannequin/iers/workflows/CI/badge.svg)](https://github.com/rhannequin/iers/actions?query=workflow%3ACI)
4
+
5
+ Access to Earth orientation parameters and time scale values from the
6
+ International Earth Rotation and Reference Systems Service (IERS).
7
+
8
+ ## Installation
9
+
10
+ Install the gem and add to the application's Gemfile by executing:
11
+
12
+ $ bundle add iers
13
+
14
+ If [Bundler] is not being used to manage dependencies, install the gem by
15
+ executing:
16
+
17
+ $ gem install iers
18
+
19
+ ## Usage
20
+
21
+ Coming soon.
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
26
+ `rake test` to run the tests. You can also run `bin/console` for an interactive
27
+ prompt that will allow you to experiment.
28
+
29
+ To install this gem onto your local machine, run `bundle exec rake install`. To
30
+ release a new version, update the version number in `version.rb`, and then run
31
+ `bundle exec rake release`, which will create a git tag for the version, push
32
+ git commits and the created tag, and push the `.gem` file to [rubygems.org].
33
+
34
+ ## License
35
+
36
+ The gem is available as open source under the terms of the [MIT License].
37
+
38
+ ## Code of Conduct
39
+
40
+ Everyone interacting in the IERS Ruby project's codebases, issue trackers, chat
41
+ rooms and mailing lists is expected to follow the [code of conduct].
42
+
43
+ [Bundler]: https://bundler.io
44
+ [rubygems.org]: https://rubygems.org
45
+ [MIT License]: https://opensource.org/licenses/MIT
46
+ [code of conduct]: https://github.com/rhannequin/iers/blob/main/CODE_OF_CONDUCT.md
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[test rubocop]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module IERS
4
+ VERSION = "0.0.1"
5
+ end
data/lib/iers.rb ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "iers/version"
4
+
5
+ module IERS
6
+ end
metadata ADDED
@@ -0,0 +1,150 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Rémy Hannequin
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: irb
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: minitest
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rake
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rubocop
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ - !ruby/object:Gem::Dependency
69
+ name: rubocop-minitest
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ - !ruby/object:Gem::Dependency
83
+ name: rubocop-rake
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ - !ruby/object:Gem::Dependency
97
+ name: standard
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ description: Access to Earth orientation parameters and time scale values from the
111
+ International Earth Rotation and Reference Systems Service (IERS).
112
+ email:
113
+ - remy.hannequin@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - CHANGELOG.md
119
+ - CODE_OF_CONDUCT.md
120
+ - LICENSE.txt
121
+ - README.md
122
+ - Rakefile
123
+ - lib/iers.rb
124
+ - lib/iers/version.rb
125
+ homepage: https://github.com/rhannequin/iers
126
+ licenses:
127
+ - MIT
128
+ metadata:
129
+ homepage_uri: https://github.com/rhannequin/iers
130
+ source_code_uri: https://github.com/rhannequin/iers
131
+ changelog_uri: https://github.com/rhannequin/iers/blob/main/CHANGELOG.md
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: 3.2.0
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ requirements: []
146
+ rubygems_version: 4.0.3
147
+ specification_version: 4
148
+ summary: Earth orientation parameters and time scale values from the International
149
+ Earth Rotation and Reference Systems Service (IERS).
150
+ test_files: []