Fix typo in generated license headers

This commit is contained in:
Eric Schultz 2021-01-22 14:50:31 -06:00 committed by Eric Schultz
parent e806d8764f
commit b4c7dd114b
13 changed files with 13 additions and 13 deletions

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
CarrierWave.configure do |config|
config.storage = :aws

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
require "bundler/setup"
<% if engine? && !options[:skip_active_record] && with_dummy_app? -%>

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
class ApplicationController < ActionController::#{api? ? "API" : "Base"}
#{ api? ? '# ' : '' }protect_from_forgery with: :exception

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
module ApplicationHelper
end

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
class ApplicationJob < ActiveJob::Base
end

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
class ApplicationMailer < ActionMailer::Base
default from: 'from@example.com'

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<% if engine? -%>
require "<%= namespaced_name %>/engine"
<% else -%>

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules <<~rb
class Engine < ::Rails::Engine
#{mountable? ? ' isolate_namespace ' + camelized_modules : ' '}

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
<%= wrap_in_modules "VERSION = '0.1.0'" %>

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# desc "Explaining what the task does"
# task :<%= underscored_name %> do
# # Task goes here

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
require_relative "boot"
<% if include_all_railties? -%>

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)