Skip to content

Commit c3ca078

Browse files
committed
mm
1 parent 28c747a commit c3ca078

File tree

5 files changed

+9
-43
lines changed

5 files changed

+9
-43
lines changed

.bundle/config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
BUNDLE_DEPLOYMENT: "true"
3+
BUNDLE_PATH: "vendor/bundle"

Gemfile

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# frozen_string_literal: true
2-
3-
source "https://rubygems.org"
4-
5-
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6-
7-
# gem "rails"
8-
9-
gem "cowsay", "~> 0.3.0"
2+
source 'https://rubygems.org'
103
gem "anystyle", "~> 1.3"
114

12-
gem "webrick", "~> 1.7"
5+
ruby "~> 2.7.x"

Gemfile.lock

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

apps/converter-frontend/pages/authors.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import qs from 'querystring'
99

1010
function AuthorPage() {
1111
const { status } = useSession()
12+
1213
if (status !== 'authenticated') {
1314
return (
1415
<Button onClick={() => signIn()} leftIcon={<FaMicrosoft />}>

vercel.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"functions": {
3-
"api/style": {
4-
"includeFiles": "+(Gemfile*|api/style.rb)"
3+
"api/style.rb": {
4+
"includeFiles": "+(Gemfile*|api/style.rb|vendor/**/*)",
5+
"excludeFiles": "+(node_modules/**/*|dist/**/*)"
56
}
67
}
78
}

0 commit comments

Comments
 (0)