snail_trail 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.adoc +3 -0
- data/LICENSE +23 -0
- data/README.adoc +30 -0
- data/lib/snail_trail/version.rb +5 -0
- data/lib/snail_trail.rb +6 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 3d7a0475fb88d2e0c16bb910bad898f36aea9a7f18d40740aad49e9ede70baa8
|
4
|
+
data.tar.gz: 1aabf782bb08a12d1350a164ebfcbabfd6311a031c33b23ba804d442dca38b83
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a1395f6dc2ef5266a1dac348df61bca06806edd3c2e1a2eed6da5ae20c79629feff11a22a9ec457d54a970ff8a50a99f3bf828cc2c69a93daae8f5db2222ade4
|
7
|
+
data.tar.gz: b28f4d62c23ec6d77ab14300521fc1a2979ba54f1e4e959342a148951c67b076ed1cd704bc04fdfe3a85638a5206ae479cf3d8a8682e996e4d7d8765eb1d8618
|
data/CHANGELOG.adoc
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Copyright (c) 2009 Andy Stewart, AirBlade Software Ltd.
|
2
|
+
Copyright (c) 2018 Weston Ganger
|
3
|
+
Copyright (c) 2025 Marcus Wyatt
|
4
|
+
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
a copy of this software and associated documentation files (the
|
8
|
+
"Software"), to deal in the Software without restriction, including
|
9
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be
|
15
|
+
included in all copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.adoc
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
= SnailTrail
|
2
|
+
|
3
|
+
SnailTrail
|
4
|
+
|
5
|
+
== Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
[source,ruby]
|
10
|
+
----
|
11
|
+
gem 'snail_trail'
|
12
|
+
----
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle install
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install snail_trail
|
21
|
+
|
22
|
+
== Usage
|
23
|
+
|
24
|
+
== Changelog
|
25
|
+
|
26
|
+
See xref:./CHANGELOG.adoc[CHANGELOG] for changes
|
27
|
+
|
28
|
+
== Contributing
|
29
|
+
|
30
|
+
See xref:./CONTRIBUTING.adoc[CONTRIBUTING] for contributing guidelines
|
data/lib/snail_trail.rb
ADDED
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: snail_trail
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brands Insurance
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2025-05-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rubocop-rubomatic
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
description:
|
28
|
+
email:
|
29
|
+
- documents@brandsinsurance.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- CHANGELOG.adoc
|
35
|
+
- LICENSE
|
36
|
+
- README.adoc
|
37
|
+
- lib/snail_trail.rb
|
38
|
+
- lib/snail_trail/version.rb
|
39
|
+
homepage: https://github.com/brandsinsurance/snail_trail/
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata:
|
43
|
+
rubygems_mfa_required: 'true'
|
44
|
+
homepage_uri: https://github.com/brandsinsurance/snail_trail/
|
45
|
+
source_code_uri: https://github.com/brandsinsurance/snail_trail
|
46
|
+
changelog_uri: https://github.com/brandsinsurance/snail_trail/blob/main/CHANGELOG.adoc
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 2.5.3
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
requirements: []
|
62
|
+
rubygems_version: 3.4.10
|
63
|
+
signing_key:
|
64
|
+
specification_version: 4
|
65
|
+
summary: Shared SnailTrail
|
66
|
+
test_files: []
|