weird_phlex-mount 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +23 -0
- data/README.md +48 -0
- data/lib/weird_phlex/mount/railtie.rb +8 -0
- data/lib/weird_phlex/mount/version.rb +7 -0
- data/lib/weird_phlex/mount.rb +4 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3134916da001678b42a93101020281a7e83befa0a341e4ac20e7bb320d89a5d1
|
4
|
+
data.tar.gz: fbd4ebff881ca7176dd61b79dddcdbee61b384292fd10ed9f457a46d7c12d319
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 101b92ba7eeeb81a4e8156625ffcd60e7e812b5c21f30496bd616d350d473dff5f13673e8b104b87cebc9c5ee95d23e133ff7ea34a3aa985567a7c4f9874d26b
|
7
|
+
data.tar.gz: 85d72f2eb071823094592519bb1869eedcacb8fb04d8131ad9a07d6fc9e2cd74fb9d56d49a682a0a8ba6a62bd62bb1ceaea20f194f4f082f4e7b74480432fe2b
|
data/CHANGELOG.md
ADDED
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/weird_phlex-mount.svg)](https://rubygems.org/gems/weird_phlex-mount)
|
2
|
+
[![Build](https://github.com/weird-phlex/weird_phlex-mount/workflows/Build/badge.svg)](https://github.com/palkan/weird_phlex-mount/actions)
|
3
|
+
[![JRuby Build](https://github.com/weird-phlex/weird_phlex-mount/workflows/JRuby%20Build/badge.svg)](https://github.com/weird-phlex/weird_phlex-mount/actions)
|
4
|
+
|
5
|
+
# Weird Phlex Mount
|
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 "weird_phlex-mount"
|
18
|
+
# ...
|
19
|
+
end
|
20
|
+
```
|
21
|
+
|
22
|
+
Or adding to your project:
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
# Gemfile
|
26
|
+
gem "weird_phlex-mount"
|
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/weird-phlex/weird_phlex-mount](https://github.com/weird-phlex/weird_phlex-mount).
|
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).
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: weird_phlex-mount
|
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-07-30 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
|
+
description: Example description
|
70
|
+
email:
|
71
|
+
- Klaus Weidinger
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- CHANGELOG.md
|
77
|
+
- LICENSE.txt
|
78
|
+
- README.md
|
79
|
+
- lib/weird_phlex/mount.rb
|
80
|
+
- lib/weird_phlex/mount/railtie.rb
|
81
|
+
- lib/weird_phlex/mount/version.rb
|
82
|
+
homepage: https://github.com/weird-phlex/weird_phlex-mount
|
83
|
+
licenses:
|
84
|
+
- MIT
|
85
|
+
metadata:
|
86
|
+
bug_tracker_uri: https://github.com/weird-phlex/weird_phlex-mount/issues
|
87
|
+
changelog_uri: https://github.com/weird-phlex/weird_phlex-mount/blob/master/CHANGELOG.md
|
88
|
+
documentation_uri: https://github.com/weird-phlex/weird_phlex-mount
|
89
|
+
homepage_uri: https://github.com/weird-phlex/weird_phlex-mount
|
90
|
+
source_code_uri: https://github.com/weird-phlex/weird_phlex-mount
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '2.7'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubygems_version: 3.5.9
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: Example description
|
110
|
+
test_files: []
|