Skip to content

Commit fa4650e

Browse files
committed
Switch to freezolite
1 parent d24e449 commit fa4650e

File tree

216 files changed

+14
-434
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+14
-434
lines changed

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Performance/TimesMap:
6666
Rails/SaveBang:
6767
Enabled: false
6868
Style/FrozenStringLiteralComment:
69-
Enabled: true
69+
EnforcedStyle: never
7070
Style/HashSyntax:
7171
EnforcedShorthandSyntax: always
7272
EnforcedStyle: ruby19

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
source "https://rubygems.org"
42
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
53

@@ -41,6 +39,7 @@ gem "tickly", github: "miharekar/tickly"
4139
gem "turbo-rails", "~> 2.0.0-beta.1"
4240

4341
gem "appsignal"
42+
gem "freezolite"
4443
gem "pghero"
4544
gem "pg_query"
4645
gem "rack-mini-profiler"

Gemfile.lock

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,11 @@ GEM
9797
annotate (3.2.0)
9898
activerecord (>= 3.2, < 8.0)
9999
rake (>= 10.4, < 14.0)
100-
appsignal (3.6.3)
100+
appsignal (3.6.4)
101101
rack
102102
ast (2.4.2)
103103
aws-eventstream (1.3.0)
104-
aws-partitions (1.899.0)
104+
aws-partitions (1.900.0)
105105
aws-sdk-core (3.191.4)
106106
aws-eventstream (~> 1, >= 1.3.0)
107107
aws-partitions (~> 1, >= 1.651.0)
@@ -155,7 +155,7 @@ GEM
155155
railties (>= 5)
156156
drb (2.2.1)
157157
erubi (1.12.0)
158-
et-orbi (1.2.10)
158+
et-orbi (1.2.11)
159159
tzinfo
160160
factory_bot (6.4.6)
161161
activesupport (>= 5.0.0)
@@ -168,6 +168,8 @@ GEM
168168
net-http
169169
ffi (1.16.3)
170170
formatador (1.1.0)
171+
freezolite (0.4.0)
172+
require-hooks (~> 0.2)
171173
fugit (1.9.0)
172174
et-orbi (~> 1, >= 1.2.7)
173175
raabro (~> 1.4)
@@ -380,11 +382,12 @@ GEM
380382
psych (>= 4.0.0)
381383
redis (5.1.0)
382384
redis-client (>= 0.17.0)
383-
redis-client (0.21.0)
385+
redis-client (0.21.1)
384386
connection_pool
385387
regexp_parser (2.9.0)
386-
reline (0.4.3)
388+
reline (0.5.0)
387389
io-console (~> 0.5)
390+
require-hooks (0.2.2)
388391
responders (3.1.1)
389392
actionpack (>= 5.2)
390393
railties (>= 5.2)
@@ -413,7 +416,7 @@ GEM
413416
rubocop-performance (1.20.2)
414417
rubocop (>= 1.48.1, < 2.0)
415418
rubocop-ast (>= 1.30.0, < 2.0)
416-
rubocop-rails (2.24.0)
419+
rubocop-rails (2.24.1)
417420
activesupport (>= 4.2.0)
418421
rack (>= 1.1)
419422
rubocop (>= 1.33.0, < 2.0)
@@ -502,6 +505,7 @@ DEPENDENCIES
502505
dockerfile-rails
503506
doorkeeper
504507
factory_bot_rails
508+
freezolite
505509
guard
506510
guard-minitest
507511
image_processing

Guardfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
# A sample Guardfile
42
# More info at https://github.com/guard/guard#readme
53

Rakefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
# Add your own tasks in files placed in lib/tasks ending in .rake,
42
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
53

app/channels/application_cable/channel.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
module ApplicationCable
42
class Channel < ActionCable::Channel::Base
53
end

app/channels/application_cable/connection.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
module ApplicationCable
42
class Connection < ActionCable::Connection::Base
53
end

app/controllers/airtable_controller.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
class AirtableController < ApplicationController
42
skip_before_action :verify_authenticity_token
53

app/controllers/api/base_controller.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
module Api
42
class BaseController < ApplicationController
53
skip_before_action :verify_authenticity_token

app/controllers/api/credentials_controller.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# frozen_string_literal: true
2-
31
module Api
42
class CredentialsController < Api::BaseController
53
before_action :verify_read_access

0 commit comments

Comments
 (0)