Skip to content

Commit 194344f

Browse files
authored
Add 1190 Domains (#43)
Additions: - https://github.com/PeterDaveHello/url-shorteners - 927 - https://github.com/738/awesome-url-shortener - 18 - Branded bitly domains - 241 - Additional domains: bitlybr.com, ir.uv.es, go.uv.es, link.uv.es - 4 Removals: - Duplicate: `mz.cm,` (https://github.com/altmetric/embiggen/blob/6b61cbee40209dbec518c35612ce12931cbc742c/shorteners.txt#L4856) Other changes: - Split module_function specification - Solves rubocop violation (failing CI): lib/embiggen.rb:5:3: C: [Correctable] Style/AccessModifierDeclarations: module_function should not be inlined in method definitions. module_function :URI, :configure ^^^^^^^^^^^^^^^
1 parent 6b61cbe commit 194344f

5 files changed

Lines changed: 1202 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file. This
33
project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.6.0] - 2024-11-20
6+
### Changed
7+
- Added 949 new shorteners
8+
- Added 241 new Bitly branded domain shorteners
9+
- Removed 1 duplicate `mz.cm,`
10+
511
## UNRELEASED - 2024-10-15
612
### Changed
713
- Modernise dev dependencies

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
A Ruby library to expand shortened URLs.
44

5-
**Current version:** 1.5.0
5+
**Current version:** 1.6.0
66
**Supported Ruby versions:** >= 2.7
77

88
## Installation
99

1010
```
11-
gem install embiggen -v '~> 1.5'
11+
gem install embiggen -v '~> 1.6'
1212
```
1313

1414
Or, in your `Gemfile`:
1515

1616
```ruby
17-
gem 'embiggen', '~> 1.5'
17+
gem 'embiggen', '~> 1.6'
1818
```
1919

2020
## Usage
@@ -203,6 +203,7 @@ Override the following settings:
203203
* [Bit.do's](http://bit.do/list-of-url-shorteners.php) curated list
204204
* [Hongkiat's](http://www.hongkiat.com/blog/url-shortening-services-the-ultimate-list/)
205205
curated list
206+
* [PeterDaveHello's](https://github.com/PeterDaveHello/url-shorteners) curated list
206207
* A list of branded [Bitly](https://bitly.com/) domains collected by Altmetric
207208

208209
## License

embiggen.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'embiggen'
3-
s.version = '1.5.0'
3+
s.version = '1.6.0'
44
s.summary = 'A library to expand shortened URLs'
55
s.description = <<-EOF
66
A library to expand shortened URIs, respecting timeouts, following

lib/embiggen.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ def configure
1010
yield(Configuration)
1111
end
1212

13-
module_function :URI, :configure
13+
module_function :URI
14+
module_function :configure
1415
end

0 commit comments

Comments
 (0)