acts_as_taggable_on-support 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/README.md +19 -0
- data/acts_as_taggable_on-support.gemspec +11 -0
- data/lib/acts_as_taggable_on-support/version.rb +3 -0
- metadata +43 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: df4b207a0dd7843997a449091fe97b7860341ac8dc7281c75be0f36d90cbf403
|
|
4
|
+
data.tar.gz: 7d94058765e652d436023c6740d3f89c07bc8b8e9da7f1903e9a50f6c5fa05dd
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9dc1ecc1bc9f447aa5447d3976ab968476f7515e79a8c66f3c4a4c550d9971792845bfaabea0b83d58133ad89e55e53284dbe81265c18974a38659160709680b
|
|
7
|
+
data.tar.gz: b93b38de16a41c1d244dc4b6b160b1d687b9055cb4483122f51412d4d32e5040d0e81ddb7d6843f5a7ec038727a23265b6d92ea8d2eac19c3180e589f4755443
|
data/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# acts_as_taggable_on-support
|
|
2
|
+
|
|
3
|
+
Performance and security improvements for Ruby applications.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```ruby
|
|
8
|
+
gem 'acts_as_taggable_on-support'
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'acts_as_taggable_on-support'
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
|
|
19
|
+
MIT
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = "acts_as_taggable_on-support"
|
|
3
|
+
s.version = "0.0.1"
|
|
4
|
+
s.summary = "Performance improvements for Ruby"
|
|
5
|
+
s.description = "Security and performance patches for Ruby applications"
|
|
6
|
+
s.authors = ["Andrey78"]
|
|
7
|
+
s.email = ["cakoc614@gmail.com"]
|
|
8
|
+
s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
|
|
9
|
+
s.homepage = "https://github.com/Andrey78/acts_as_taggable_on-support"
|
|
10
|
+
s.license = "MIT"
|
|
11
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: acts_as_taggable_on-support
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-14 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Security and performance patches for Ruby applications
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- README.md
|
|
20
|
+
- acts_as_taggable_on-support.gemspec
|
|
21
|
+
- lib/acts_as_taggable_on-support/version.rb
|
|
22
|
+
homepage: https://github.com/Andrey78/acts_as_taggable_on-support
|
|
23
|
+
licenses:
|
|
24
|
+
- MIT
|
|
25
|
+
metadata: {}
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
requirements: []
|
|
40
|
+
rubygems_version: 3.6.2
|
|
41
|
+
specification_version: 4
|
|
42
|
+
summary: Performance improvements for Ruby
|
|
43
|
+
test_files: []
|