dunkelziffer 0.0.2

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: bfe94026e2c01e03cd5c52affe21b228c1083308a7af74e1bed3927fb8ca5993
4
+ data.tar.gz: 8024daf99ca9137173459eae26e7948cc66620db1a5101c14067da4e313ac0ab
5
+ SHA512:
6
+ metadata.gz: c21691d99c91b2fb89ffe2c8a28a5f5f36d0e1f67e3c5de7f25ec3d7c37aa2133a9b945ea3869ba4448d8e2a5bfae36fa23e07f21928a22d80157af8997cd6ce
7
+ data.tar.gz: e384e64962461baf61f1dba401c473e7dc096cc6b397760045449a9eebfef630aece4786b75df38ca0333e849963a844eed50780004e2b6868d5054b9887111c
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ # Change log
2
+
3
+ ## master
data/LICENSE.txt ADDED
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2024 Klaus Weidinger
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ [![Gem Version](https://badge.fury.io/rb/dunkelziffer.svg)](https://rubygems.org/gems/dunkelziffer)
2
+ [![Build](https://github.com/dunkelziffer/dunkelziffer/workflows/Build/badge.svg)](https://github.com/dunkelziffer/dunkelziffer/actions)
3
+ [![JRuby Build](https://github.com/dunkelziffer/dunkelziffer/workflows/JRuby%20Build/badge.svg)](https://github.com/dunkelziffer/dunkelziffer/actions)
4
+
5
+ # Dunkelziffer Gem Test
6
+
7
+ TBD
8
+
9
+ ## Installation
10
+
11
+ Adding to a gem:
12
+
13
+ ```ruby
14
+ # my-cool-gem.gemspec
15
+ Gem::Specification.new do |spec|
16
+ # ...
17
+ spec.add_dependency "dunkelziffer"
18
+ # ...
19
+ end
20
+ ```
21
+
22
+ Or adding to your project:
23
+
24
+ ```ruby
25
+ # Gemfile
26
+ gem "dunkelziffer"
27
+ ```
28
+
29
+ ### Supported Ruby versions
30
+
31
+ - Ruby (MRI) >= 2.7.0
32
+ - JRuby >= 9.3.0
33
+
34
+ ## Usage
35
+
36
+ TBD
37
+
38
+ ## Contributing
39
+
40
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/dunkelziffer/dunkelziffer](https://github.com/dunkelziffer/dunkelziffer).
41
+
42
+ ## Credits
43
+
44
+ This gem is generated via [`newgem` template](https://github.com/palkan/newgem) by [@palkan](https://github.com/palkan).
45
+
46
+ ## License
47
+
48
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dunkelziffer # :nodoc:
4
+ class Railtie < ::Rails::Railtie # :nodoc:
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dunkelziffer # :nodoc:
4
+ VERSION = "0.0.2"
5
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "dunkelziffer/version"
4
+ require "dunkelziffer/railtie" if defined?(Rails::Railtie)
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dunkelziffer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Klaus Weidinger
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: bundler
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.15'
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '1.15'
26
+ - !ruby/object:Gem::Dependency
27
+ name: combustion
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '1.1'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '1.1'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rake
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '13.0'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '13.0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rspec
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '3.9'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '3.9'
68
+ description: Example description
69
+ email:
70
+ - Klaus Weidinger
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - CHANGELOG.md
76
+ - LICENSE.txt
77
+ - README.md
78
+ - lib/dunkelziffer.rb
79
+ - lib/dunkelziffer/railtie.rb
80
+ - lib/dunkelziffer/version.rb
81
+ homepage: https://github.com/dunkelziffer/dunkelziffer
82
+ licenses:
83
+ - MIT
84
+ metadata:
85
+ homepage_uri: https://github.com/dunkelziffer/dunkelziffer
86
+ changelog_uri: https://github.com/dunkelziffer/dunkelziffer/blob/main/CHANGELOG.md
87
+ bug_tracker_uri: https://github.com/dunkelziffer/dunkelziffer/issues
88
+ documentation_uri: https://github.com/dunkelziffer/dunkelziffer/blob/main/README.md
89
+ source_code_uri: https://github.com/dunkelziffer/dunkelziffer
90
+ custom_attribute: a, b, c
91
+ rdoc_options: []
92
+ require_paths:
93
+ - lib
94
+ required_ruby_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '2.7'
99
+ required_rubygems_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ requirements: []
105
+ rubygems_version: 3.6.7
106
+ specification_version: 4
107
+ summary: Example description
108
+ test_files: []