Skip to content

Commit 11acb05

Browse files
committed
remove frozen strig literal
1 parent e9da298 commit 11acb05

File tree

166 files changed

+4
-327
lines changed

Some content is hidden

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

166 files changed

+4
-327
lines changed

.pryrc

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
if ::Rails.env.development?
42
include ::FactoryBot::Syntax::Methods
53
end

Gemfile

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
source 'https://rubygems.org'
42

53
gem 'aws-sdk-s3'

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/agent_api/api_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 AgentApi
42
class ApiController < ::ActionController::Base # rubocop: disable Rails/ApplicationController
53
before_action :authorize

app/controllers/agents_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 AgentsController < ::ApplicationController
42
def index
53
@pagination, @agents = ::Pagination.new(current_user.private_agents.order(created_at: :asc), self).call

app/controllers/application_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 ApplicationController < ::ActionController::Base
42
before_action :authenticate
53
before_action :require_authentication

app/controllers/application_public_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 ApplicationPublicController < ::ApplicationController
42
skip_before_action :require_authentication
53
skip_before_action :authenticate

app/controllers/broadcasts/agent.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 Broadcasts
42
class Agent < ::Broadcasts::BaseBroadcast
53
def update

0 commit comments

Comments
 (0)