skymap 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 +7 -0
- data/CHANGELOG.md +15 -0
- data/LICENSE.txt +21 -0
- data/README.md +67 -0
- data/lib/skymap/version.rb +5 -0
- data/lib/skymap.rb +7 -0
- metadata +120 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 39b1d636c38cf34bdfc3f5a254d032541d34644f36ccd81a2b7e8e93bb6381c6
|
|
4
|
+
data.tar.gz: df280a7aa348117b765058bf21238f5612f0c328518bf2db4cb23c9e131267e6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0e91b001e8435a137565f80ec7637bc55105deb03b0dc23cf0bd3cfbb8f7839e92bc52a07f51efdf76d5f629408c6e8da2ff95fa3ea0cbcce6faf9420ff8d6b7
|
|
7
|
+
data.tar.gz: c8fca052275edce9fdd41b588cdfe303e8bbadc177aca27db77904fc6a9a17596b6bea4fede841961b479980116aa07343f74427338a2d2e3efb6199a0ff1996
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.0.1] - 2026-09-25
|
|
11
|
+
|
|
12
|
+
- Initial release to reserve the gem name on RubyGems.org
|
|
13
|
+
|
|
14
|
+
[Unreleased]: https://github.com/rhannequin/skymap/compare/v0.0.1...HEAD
|
|
15
|
+
[0.0.1]: https://github.com/rhannequin/skymap/releases/tag/v0.0.1
|
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,67 @@
|
|
|
1
|
+
# Skymap
|
|
2
|
+
|
|
3
|
+
[](https://github.com/rhannequin/skymap/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/skymap)
|
|
5
|
+
|
|
6
|
+
Skymap is a Ruby library for generating maps of the sky.
|
|
7
|
+
|
|
8
|
+
> [!WARNING]
|
|
9
|
+
> This project is in its very early stages, please expect breaking changes.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Install the gem and add it to the application's Gemfile by executing:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
bundle add skymap
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
If Bundler is not being used to manage dependencies, install the gem by
|
|
20
|
+
executing:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
gem install skymap
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
Coming soon.
|
|
29
|
+
|
|
30
|
+
## Development
|
|
31
|
+
|
|
32
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
33
|
+
`bundle exec rake` to run the tests and the linter. You can also run
|
|
34
|
+
`bin/console` for an interactive prompt that will allow you to experiment.
|
|
35
|
+
|
|
36
|
+
- Tests: `bundle exec rspec`
|
|
37
|
+
- Linter ([Standard Ruby] through RuboCop): `bundle exec rubocop`
|
|
38
|
+
(`bundle exec rubocop -a` to autocorrect)
|
|
39
|
+
- Everything CI checks: `bin/ci`
|
|
40
|
+
|
|
41
|
+
### Releasing
|
|
42
|
+
|
|
43
|
+
1. Update the version number in `lib/skymap/version.rb` and `CHANGELOG.md`.
|
|
44
|
+
2. Commit, then tag and push: `git tag vX.Y.Z && git push origin vX.Y.Z`.
|
|
45
|
+
3. The [Release workflow](.github/workflows/release.yml) builds and publishes
|
|
46
|
+
the gem to RubyGems.org using [trusted publishing].
|
|
47
|
+
|
|
48
|
+
## Contributing
|
|
49
|
+
|
|
50
|
+
Bug reports and pull requests are welcome on GitHub at
|
|
51
|
+
https://github.com/rhannequin/skymap. This project is intended to be a safe,
|
|
52
|
+
welcoming space for collaboration, and contributors are expected to adhere to
|
|
53
|
+
the [code of conduct](CODE_OF_CONDUCT.md).
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
The gem is available as open source under the terms of the [MIT License].
|
|
58
|
+
|
|
59
|
+
## Code of Conduct
|
|
60
|
+
|
|
61
|
+
Everyone interacting in the Skymap project's codebases, issue trackers, chat
|
|
62
|
+
rooms and mailing lists is expected to follow the
|
|
63
|
+
[code of conduct](CODE_OF_CONDUCT.md).
|
|
64
|
+
|
|
65
|
+
[Standard Ruby]: https://github.com/standardrb/standard
|
|
66
|
+
[trusted publishing]: https://guides.rubygems.org/trusted-publishing/
|
|
67
|
+
[MIT License]: https://opensource.org/licenses/MIT
|
data/lib/skymap.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: skymap
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Rémy Hannequin
|
|
8
|
+
bindir: bin
|
|
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: '1.18'
|
|
19
|
+
type: :development
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.18'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rake
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '13.0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '13.0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: rspec
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '3.13'
|
|
47
|
+
type: :development
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.13'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: rubocop
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '1.88'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '1.88'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: standard
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '1.54'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '1.54'
|
|
82
|
+
description: Skymap is a Ruby library for generating maps of the sky.
|
|
83
|
+
email:
|
|
84
|
+
- remy.hannequin@gmail.com
|
|
85
|
+
executables: []
|
|
86
|
+
extensions: []
|
|
87
|
+
extra_rdoc_files: []
|
|
88
|
+
files:
|
|
89
|
+
- CHANGELOG.md
|
|
90
|
+
- LICENSE.txt
|
|
91
|
+
- README.md
|
|
92
|
+
- lib/skymap.rb
|
|
93
|
+
- lib/skymap/version.rb
|
|
94
|
+
homepage: https://github.com/rhannequin/skymap
|
|
95
|
+
licenses:
|
|
96
|
+
- MIT
|
|
97
|
+
metadata:
|
|
98
|
+
allowed_push_host: https://rubygems.org
|
|
99
|
+
source_code_uri: https://github.com/rhannequin/skymap
|
|
100
|
+
changelog_uri: https://github.com/rhannequin/skymap/blob/main/CHANGELOG.md
|
|
101
|
+
bug_tracker_uri: https://github.com/rhannequin/skymap/issues
|
|
102
|
+
rubygems_mfa_required: 'true'
|
|
103
|
+
rdoc_options: []
|
|
104
|
+
require_paths:
|
|
105
|
+
- lib
|
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 3.3.0
|
|
111
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - ">="
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '0'
|
|
116
|
+
requirements: []
|
|
117
|
+
rubygems_version: 3.6.9
|
|
118
|
+
specification_version: 4
|
|
119
|
+
summary: Sky maps in Ruby.
|
|
120
|
+
test_files: []
|