Fix typo in generated license headers
This commit is contained in:
parent
e806d8764f
commit
b4c7dd114b
13 changed files with 13 additions and 13 deletions
|
@ -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
|
||||
|
|
|
@ -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? -%>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 -%>
|
||||
|
|
|
@ -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 : ' '}
|
||||
|
|
|
@ -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'" %>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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? -%>
|
||||
|
|
|
@ -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__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue