hercule-poro 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f11d9c3db81a157ab929c31a69d5a4aec6398e3fcf74d83dec63b6e60bf58067
4
+ data.tar.gz: 4f14f67fa8d322beb6aa76cb62801b2f6121aac4793f2601e746aa5bc95c82e4
5
+ SHA512:
6
+ metadata.gz: 4bd77a03c82e4d33f953491224e704c3f76471c351e9868d0508f9b9adf1d3774ad40eaafd996dca2a03e17bb2dfc551c24731dac8a6238eaab1766d29597cbd
7
+ data.tar.gz: c4a469798f17db38d69013d21e044444ccefb1ef65163dad9e92d453b55fb36fef535341a4dabab4bbea0995b71bb65c412ef1b5c893d432d3632fe29ff87c92
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-02-24
4
+
5
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in hercule-poro.gemspec
6
+ gemspec
7
+
8
+ gem "rake"
9
+
10
+ gem "minitest", "~> 5.0"
11
+ gem "minitest-sprint"
data/Gemfile.lock ADDED
@@ -0,0 +1,25 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hercule-poro (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (5.17.0)
10
+ minitest-sprint (1.2.2)
11
+ path_expander (~> 1.1)
12
+ path_expander (1.1.1)
13
+ rake (13.0.6)
14
+
15
+ PLATFORMS
16
+ arm64-darwin-21
17
+
18
+ DEPENDENCIES
19
+ hercule-poro!
20
+ minitest (~> 5.0)
21
+ minitest-sprint
22
+ rake
23
+
24
+ BUNDLED WITH
25
+ 2.4.7
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Kasper Timm Hansen
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,49 @@
1
+ # Hercule::PORO
2
+
3
+ Helps give your Ruby PORO's — your Plain Old Ruby Objects, crime passionelle? — a healthy distance to their genius.
4
+
5
+ So instead of doing this:
6
+
7
+ ```ruby
8
+ class PORO
9
+ end
10
+ ```
11
+
12
+ You can do this:
13
+
14
+ ```ruby
15
+ class PORO < Hercule::PORO
16
+ end
17
+ ```
18
+
19
+ (Seriously, this gem does nothing and I just made it because I thought the TV Detective pun was funny.)
20
+
21
+ ## Installation
22
+
23
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
24
+
25
+ Install the gem and add to the application's Gemfile by executing:
26
+
27
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
28
+
29
+ If bundler is not being used to manage dependencies, install the gem by executing:
30
+
31
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
32
+
33
+ ## Usage
34
+
35
+ TODO: Write usage instructions here
36
+
37
+ ## Development
38
+
39
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
40
+
41
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hercule-poro.
46
+
47
+ ## License
48
+
49
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hercule
4
+ class PORO
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "poro/version"
4
+
5
+ module Hercule
6
+ class PORO
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hercule-poro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kasper Timm Hansen
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-02-24 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - hey@kaspth.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - LICENSE.txt
24
+ - README.md
25
+ - Rakefile
26
+ - lib/hercule/poro.rb
27
+ - lib/hercule/poro/version.rb
28
+ homepage: https://github.com/kaspth/hercule-poro
29
+ licenses:
30
+ - MIT
31
+ metadata:
32
+ homepage_uri: https://github.com/kaspth/hercule-poro
33
+ source_code_uri: https://github.com/kaspth/hercule-poro
34
+ changelog_uri: https://github.com/kaspth/hercule-poro/blob/main/CHANGELOG.md
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.2.0
44
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubygems_version: 3.4.7
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: Hercule::PORO helps give your Ruby POROs a healthy distance to their genius.
54
+ test_files: []