Skip to content

Commit 1c98ed4

Browse files
authored
Merge pull request #20 from fdocr/dep-bump
Dependency bump
2 parents 41072d9 + 1bf413b commit 1c98ed4

File tree

5 files changed

+22
-20
lines changed

5 files changed

+22
-20
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Ruby
1717
uses: ruby/setup-ruby@v1
1818
with:
19-
ruby-version: 3.1.1
19+
ruby-version: 3.1.2
2020
- name: Install dependencies
2121
run: bundle install
2222
- name: Run tests

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.1
1+
3.1.2

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Thank you for the interest in the project!
44

5-
If you found a bug, have a feature request or need help (ask questions) [open a new issue](https://github.com/fdoxyz/udl-server/issues/new).
5+
If you found a bug, have a feature request or need help (ask questions) [open a new issue](https://github.com/fdocr/udl-server/issues/new).
66

77
If you implemented a bugfix, a new feature, or updated the docs/tests feel free to __Submit a Pull Request__ so it can be reviewed and hopefully merged.
88

Gemfile.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (7.0.2.2)
4+
activesupport (7.0.4.3)
55
concurrent-ruby (~> 1.0, >= 1.0.2)
66
i18n (>= 1.6, < 2)
77
minitest (>= 5.1)
88
tzinfo (~> 2.0)
99
byebug (11.1.3)
10-
concurrent-ruby (1.1.9)
10+
concurrent-ruby (1.2.2)
1111
diff-lcs (1.5.0)
1212
dotenv (2.7.6)
13-
i18n (1.10.0)
13+
i18n (1.13.0)
1414
concurrent-ruby (~> 1.0)
15-
minitest (5.15.0)
15+
minitest (5.18.0)
1616
multi_json (1.15.0)
17-
mustermann (1.1.1)
17+
mustermann (1.1.2)
1818
ruby2_keywords (~> 0.0.1)
1919
nio4r (2.5.8)
2020
puma (5.6.4)
2121
nio4r (~> 2.0)
22-
rack (2.2.3)
22+
rack (2.2.7)
2323
rack-attack (6.6.0)
2424
rack (>= 1.0, < 3)
2525
rack-protection (2.2.0)
@@ -59,8 +59,8 @@ GEM
5959
tilt (~> 2.0)
6060
sinatra-reloader (1.0)
6161
sinatra-contrib
62-
tilt (2.0.10)
63-
tzinfo (2.0.4)
62+
tilt (2.1.0)
63+
tzinfo (2.0.6)
6464
concurrent-ruby (~> 1.0)
6565

6666
PLATFORMS
@@ -81,7 +81,7 @@ DEPENDENCIES
8181
sinatra-reloader (~> 1.0)
8282

8383
RUBY VERSION
84-
ruby 3.1.1p18
84+
ruby 3.1.2p20
8585

8686
BUNDLED WITH
8787
2.3.8

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is a server that bounces traffic to better leverage Deep Linking in mobile
44

55
The project's objectives are to be a simple, effective and lightweight tool that can help any website provide a seamless integration with their mobile apps.
66

7-
The server is hosted at [`https://udl.visualcosita.com`](https://udl.visualcosita.com) open for public use, free of charge.
7+
I used to host a server for public use (free of charge) but [due to _"reasons"_](https://github.com/fdocr/udl-server/issues/19#issuecomment-1536587313) it's not available anymore. You can [self host the project](#self-hosting) on most PaaS hosting providers quite easily. [Create an issue](https://github.com/fdocr/udl-server/issues/new) if you need help or have questions.
88

99
## How it works, and why?
1010

@@ -18,16 +18,18 @@ These and other edge cases make for a less than ideal experience, if your object
1818

1919
## Self-hosting
2020

21-
Power users will likely need better reliability and scalability than a free service is able to offer. Self-hosting with Heroku (or similar SaaS platforms) is as easy as:
21+
Power users will likely need better reliability and scalability than a free service is able to offer. Self-hosting with Heroku (or similar hosting solutions) is as easy as:
2222

2323
1. Fork this repository
2424
1. Configure the app to automatically deploy to your Heroku account
2525
- Using a [custom domain with Heroku](https://devcenter.heroku.com/articles/custom-domains) is very simple (i.e. `udl.your-domain.com`)
2626
- Heroku's default subdomain works too (i.e. `my-app.herokuapp.com`)
2727
1. Keep up with upstream (this repo) for future updates
28-
- `git remote add upstream [email protected]:fdoxyz/udl-server.git`
29-
- `git pull upstream main`
30-
- `git push origin main`
28+
- Use the **"Sync fork"** feature in your GitHub repo
29+
- Or manually with git commands:
30+
- `git remote add upstream [email protected]:fdocr/udl-server.git`
31+
- `git pull upstream main`
32+
- `git push origin main`
3133
1. Configure `AASA_APP_ID` ENV variable to match your App Id
3234
- Use the team ID or app ID prefix, followed by the bundle ID (joined by a dot `.`).
3335
- This will allow your UDL Server to directly serve as a Universal Link target for your app and improve the experience
@@ -60,12 +62,12 @@ Some common details to keep in mind in case your redirects aren't working proper
6062

6163
## Contributing
6264

63-
Please check out the [Contributing Guide](https://github.com/fdoxyz/udl-server/blob/main/CONTRIBUTING.md).
65+
Please check out the [Contributing Guide](https://github.com/fdocr/udl-server/blob/main/CONTRIBUTING.md).
6466

6567
## Code of Conduct
6668

67-
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Code of Conduct](https://github.com/fdoxyz/udl-server/blob/main/CODE_OF_CONDUCT.md).
69+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Code of Conduct](https://github.com/fdocr/udl-server/blob/main/CODE_OF_CONDUCT.md).
6870

6971
## License
7072

71-
Released under an [MIT License](https://github.com/fdoxyz/udl-server/blob/main/LICENSE.txt)
73+
Released under an [MIT License](https://github.com/fdocr/udl-server/blob/main/LICENSE.txt)

0 commit comments

Comments
 (0)