has_any 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: e09a9dd02b479d74579505e41274cf2d282b0459b2fa89bb7c25a52b9f6cf432
4
+ data.tar.gz: e3d0d9c46c189c6a35cece2e64172cc5297210baae8ccfc65c5a988f94efe5a3
5
+ SHA512:
6
+ metadata.gz: 539798571164acb7bcd1e5b5e6edfc92fac8a7562e37ac8f42b5ca75316573202e43462614e10e269507d3df370a7856657b320e7f9d34dda1cf275666461c90
7
+ data.tar.gz: 1d3c9e79a9524e934be95394382a49e28592f763e4fe057872148873c74c9365e57ce5f069ebfb930fc03d34f0ee4a818be5efd2623f4483c22cb5e80f1efd42
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/has_any.svg)](https://rubygems.org/gems/has_any)
2
+ [![Build](https://github.com/dunkelziffer/has_any/workflows/Build/badge.svg)](https://github.com/palkan/has_any/actions)
3
+ [![JRuby Build](https://github.com/dunkelziffer/has_any/workflows/JRuby%20Build/badge.svg)](https://github.com/dunkelziffer/has_any/actions)
4
+
5
+ # Has Any
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 "has_any"
18
+ # ...
19
+ end
20
+ ```
21
+
22
+ Or adding to your project:
23
+
24
+ ```ruby
25
+ # Gemfile
26
+ gem "has_any"
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/has_any](https://github.com/dunkelziffer/has_any).
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 HasAny # :nodoc:
4
+ class Railtie < ::Rails::Railtie # :nodoc:
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module HasAny # :nodoc:
4
+ VERSION = "0.0.1"
5
+ end
data/lib/has_any.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "ruby-next"
4
+
5
+ require "ruby-next/language/setup"
6
+ RubyNext::Language.setup_gem_load_path(transpile: true)
7
+
8
+ require "has_any/version"
9
+ require "has_any/railtie" if defined?(Rails::Railtie)
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: has_any
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Klaus Weidinger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-08-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: combustion
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '1.1'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '13.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '3.9'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '3.9'
69
+ - !ruby/object:Gem::Dependency
70
+ name: ruby-next
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: 0.15.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.15.0
83
+ description: Example description
84
+ email:
85
+ - Klaus Weidinger
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - CHANGELOG.md
91
+ - LICENSE.txt
92
+ - README.md
93
+ - lib/has_any.rb
94
+ - lib/has_any/railtie.rb
95
+ - lib/has_any/version.rb
96
+ homepage: https://github.com/dunkelziffer/has_any
97
+ licenses:
98
+ - MIT
99
+ metadata:
100
+ bug_tracker_uri: https://github.com/dunkelziffer/has_any/issues
101
+ changelog_uri: https://github.com/dunkelziffer/has_any/blob/master/CHANGELOG.md
102
+ documentation_uri: https://github.com/dunkelziffer/has_any
103
+ homepage_uri: https://github.com/dunkelziffer/has_any
104
+ source_code_uri: https://github.com/dunkelziffer/has_any
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '2.7'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubygems_version: 3.5.9
121
+ signing_key:
122
+ specification_version: 4
123
+ summary: Example description
124
+ test_files: []