embiggen 1.7.0 → 1.9.0
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 +4 -4
- data/README.md +3 -3
- data/shorteners.txt +2 -0
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a28132ab5fd7ca7bd8f3e4b0d7594b74398bae6afc4da9d59ebec70fb10f701
|
|
4
|
+
data.tar.gz: fd7e54727d47b932edef1c211379c792cd925b5c9b8c4f2171f8b22dcc7e42cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c616360339cd2d4295af9e5f79d96470eed0c15909bf58b8eff3921b99e9f4e69a1264bed3457a19ea3296e589e7a12aa089b0309aca023df820491782c278f
|
|
7
|
+
data.tar.gz: b12bbe5fd3e40446dc4aa1922d1b989bd7a576de66c9da3351c495209f48b240e0688b713c6e1ecb1d42744d00df8a0c8fa4033ee2aa28e53b368f78a09c0073
|
data/README.md
CHANGED
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
A Ruby library to expand shortened URLs.
|
|
4
4
|
|
|
5
|
-
**Current version:** 1.
|
|
5
|
+
**Current version:** 1.9.0
|
|
6
6
|
**Supported Ruby versions:** >= 2.7
|
|
7
7
|
|
|
8
8
|
## Installation
|
|
9
9
|
|
|
10
10
|
```
|
|
11
|
-
gem install embiggen -v '~> 1.
|
|
11
|
+
gem install embiggen -v '~> 1.8'
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Or, in your `Gemfile`:
|
|
15
15
|
|
|
16
16
|
```ruby
|
|
17
|
-
gem 'embiggen', '~> 1.
|
|
17
|
+
gem 'embiggen', '~> 1.8'
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Usage
|
data/shorteners.txt
CHANGED
|
@@ -3331,6 +3331,7 @@ go.she.com
|
|
|
3331
3331
|
go.shell.com
|
|
3332
3332
|
go.shr.lc
|
|
3333
3333
|
go.sjsu.edu
|
|
3334
|
+
go.skimresources.com
|
|
3334
3335
|
go.sony.tw
|
|
3335
3336
|
go.spin.com
|
|
3336
3337
|
go.tcmpub.com
|
|
@@ -4374,6 +4375,7 @@ kicking.horse
|
|
|
4374
4375
|
kickson.fr
|
|
4375
4376
|
kickz.cc
|
|
4376
4377
|
kidd.tv
|
|
4378
|
+
kidney.pub
|
|
4377
4379
|
kidneymi.org
|
|
4378
4380
|
kidsf.it
|
|
4379
4381
|
kidshelpline.info
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embiggen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Mucur
|
|
8
8
|
- Jonathan Hernandez
|
|
9
|
+
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2026-04-23 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: addressable
|
|
@@ -106,6 +107,7 @@ homepage: https://github.com/altmetric/embiggen
|
|
|
106
107
|
licenses:
|
|
107
108
|
- MIT
|
|
108
109
|
metadata: {}
|
|
110
|
+
post_install_message:
|
|
109
111
|
rdoc_options: []
|
|
110
112
|
require_paths:
|
|
111
113
|
- lib
|
|
@@ -120,12 +122,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
122
|
- !ruby/object:Gem::Version
|
|
121
123
|
version: '0'
|
|
122
124
|
requirements: []
|
|
123
|
-
rubygems_version: 3.6
|
|
125
|
+
rubygems_version: 3.1.6
|
|
126
|
+
signing_key:
|
|
124
127
|
specification_version: 4
|
|
125
128
|
summary: A library to expand shortened URLs
|
|
126
129
|
test_files:
|
|
130
|
+
- spec/spec_helper.rb
|
|
131
|
+
- spec/embiggen_spec.rb
|
|
127
132
|
- spec/embiggen/configuration_spec.rb
|
|
128
133
|
- spec/embiggen/shortener_list_spec.rb
|
|
129
134
|
- spec/embiggen/uri_spec.rb
|
|
130
|
-
- spec/embiggen_spec.rb
|
|
131
|
-
- spec/spec_helper.rb
|