Skip to content

Commit 644fe25

Browse files
committed
clean roda app
1 parent adfc662 commit 644fe25

11 files changed

Lines changed: 4 additions & 590 deletions

File tree

.gitignore

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2-
#
3-
# If you find yourself ignoring temporary files generated by your text editor
4-
# or operating system, you probably want to add a global ignore instead:
5-
# git config --global core.excludesfile '~/.gitignore_global'
6-
7-
# Ignore bundler config.
81
/.bundle
92

103
# Ignore the default SQLite database.
@@ -39,39 +32,13 @@
3932
# Ignore coverage reports
4033
/coverage/
4134

42-
# Ignore VCR cassettes (they should be committed)
43-
# /spec/fixtures/vcr_cassettes/
44-
45-
# Ignore IDE files
46-
.vscode/
47-
.idea/
48-
*.swp
49-
*.swo
50-
*~
51-
52-
# Ignore OS generated files
53-
.DS_Store
54-
.DS_Store?
55-
._*
56-
.Spotlight-V100
57-
.Trashes
58-
ehthumbs.db
59-
Thumbs.db
60-
6135
# Ignore rack cache
6236
/tmp/rack-cache-*
6337

64-
# Ignore simplecov
65-
/coverage/
6638

6739
# Ignore Astro frontend build output
6840
/frontend/dist/
6941
/frontend/.astro/
70-
71-
# Ignore Node.js dependencies
7242
/frontend/node_modules/
7343
/frontend/package-lock.json
74-
75-
# Ignore Astro cache
76-
/frontend/.astro/
77-
frontend/dist/
44+
/public/frontend

Gemfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,20 @@ source 'https://rubygems.org'
55
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
66

77
# gem 'html2rss', '~> 0.14'
8-
gem 'html2rss', github: 'html2rss/html2rss'
9-
8+
gem 'html2rss', github: 'html2rss/html2rss', branch: :master
109
gem 'html2rss-configs', github: 'html2rss/html2rss-configs'
1110

1211
# Use these instead of the two above (uncomment them) when developing locally:
1312
# gem 'html2rss', path: '../html2rss'
1413
# gem 'html2rss-configs', path: '../html2rss-configs'
1514

1615
gem 'base64'
17-
gem 'erubi'
1816
gem 'parallel'
1917
gem 'rack-cache'
2018
gem 'rack-timeout'
2119
gem 'rack-unreloader'
2220
gem 'roda'
2321
gem 'ssrf_filter'
24-
gem 'tilt'
2522

2623
gem 'puma', require: false
2724

Gemfile.lock

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
GIT
22
remote: https://github.com/html2rss/html2rss
3-
revision: 3071d18755e3f546aa35bccfdaa83694c61a475c
3+
revision: 252289759287d5f0d7251a958d12a72ceebc27d6
4+
branch: master
45
specs:
56
html2rss (0.17.0)
67
addressable (~> 2.7)
@@ -79,7 +80,6 @@ GEM
7980
dry-initializer (~> 3.2)
8081
dry-schema (~> 1.14)
8182
zeitwerk (~> 2.6)
82-
erubi (1.13.1)
8383
faraday (2.13.4)
8484
faraday-net_http (>= 2.0, < 3.5)
8585
json
@@ -204,7 +204,6 @@ GEM
204204
ssrf_filter (1.3.0)
205205
stackprof (0.2.27)
206206
thor (1.4.0)
207-
tilt (2.6.1)
208207
tzinfo (2.0.6)
209208
concurrent-ruby (~> 1.0)
210209
unicode-display_width (3.1.4)
@@ -238,7 +237,6 @@ DEPENDENCIES
238237
base64
239238
byebug
240239
climate_control
241-
erubi
242240
html2rss!
243241
html2rss-configs!
244242
parallel
@@ -259,7 +257,6 @@ DEPENDENCIES
259257
simplecov
260258
ssrf_filter
261259
stackprof
262-
tilt
263260
vcr
264261
webmock
265262
yard
@@ -284,7 +281,6 @@ CHECKSUMS
284281
dry-schema (1.14.1) sha256=2fcd7539a7099cacae6a22f6a3a2c1846fe5afeb1c841cde432c89c6cb9b9ff1
285282
dry-types (1.8.3) sha256=b5d97a45e0ed273131c0c3d5bc9f5633c2d1242e092ee47401ce7d5eab65c1bc
286283
dry-validation (1.11.1) sha256=70900bb5a2d911c8aab566d3e360c6bff389b8bf92ea8e04885ce51c41ff8085
287-
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
288284
faraday (2.13.4) sha256=c719ff52cfd0dbaeca79dd83ed3aeea3f621032abf8bc959d1c05666157cac26
289285
faraday-follow_redirects (0.3.0) sha256=d92d975635e2c7fe525dd494fcd4b9bb7f0a4a0ec0d5f4c15c729530fdb807f9
290286
faraday-net_http (3.4.1) sha256=095757fae7872b94eac839c08a1a4b8d84fd91d6886cfbe75caa2143de64ab3b
@@ -347,7 +343,6 @@ CHECKSUMS
347343
ssrf_filter (1.3.0) sha256=66882d7de7d09c019098d6d7372412950ae184ebbc7c51478002058307aba6f2
348344
stackprof (0.2.27) sha256=aff6d28656c852e74cf632cc2046f849033dc1dedffe7cb8c030d61b5745e80c
349345
thor (1.4.0) sha256=8763e822ccb0f1d7bee88cde131b19a65606657b847cc7b7b4b82e772bcd8a3d
350-
tilt (2.6.1) sha256=35a99bba2adf7c1e362f5b48f9b581cce4edfba98117e34696dde6d308d84770
351346
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
352347
unicode-display_width (3.1.4) sha256=8caf2af1c0f2f07ec89ef9e18c7d88c2790e217c482bfc78aaa65eadd5415ac1
353348
unicode-emoji (4.0.4) sha256=2c2c4ef7f353e5809497126285a50b23056cc6e61b64433764a35eff6c36532a

Procfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/auto_source.css

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)