Skip to content

Commit

Permalink
ran Run bundle exec rubocop -a
Browse files Browse the repository at this point in the history
  • Loading branch information
5andu committed Dec 30, 2023
1 parent e246a58 commit 4d61be2
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 28 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ gem 'devise'
gem 'figaro', git: 'https://github.com/ryanckulp/figaro' # patched version for Ruby 3.2.0 File.exist?()
gem 'groupdate' # used by Chartkick
gem 'httparty'
gem "image_processing", ">= 1.2"
gem 'importmap-rails'
gem 'jbuilder'
gem 'metamagic' # easily insert metatags for SEO / opengraph
Expand All @@ -25,7 +26,6 @@ gem 'stimulus-rails'
gem 'stripe'
gem 'tailwindcss-rails'
gem 'turbo-rails'
gem "image_processing", ">= 1.2"

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
Expand Down
7 changes: 2 additions & 5 deletions app/controllers/blog_posts_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ def index
end

# GET /blog_posts/slug
def show
end
def show; end

# GET /blog_posts/new
def new
@blog_post = BlogPost.new

end

# GET /blog_posts/slug/edit
def edit
end
def edit; end

# POST /blog_posts
def create
Expand Down
8 changes: 4 additions & 4 deletions app/models/blog_post.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ def generate_unique_slug
base_slug = slug.blank? ? title.parameterize : slug
other = self.class.where("slug LIKE ?", "#{base_slug}%")
self.slug = if other.exists?
"#{base_slug}-#{other.count + 1}"
else
base_slug
end
"#{base_slug}-#{other.count + 1}"
else
base_slug
end
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def change
t.datetime :created_at, null: false
end

t.index [ :key ], unique: true
t.index [:key], unique: true
end

create_table :active_storage_attachments, id: primary_key_type do |t|
Expand All @@ -33,25 +33,26 @@ def change
t.datetime :created_at, null: false
end

t.index [ :record_type, :record_id, :name, :blob_id ], name: :index_active_storage_attachments_uniqueness, unique: true
t.index [:record_type, :record_id, :name, :blob_id], name: :index_active_storage_attachments_uniqueness, unique: true
t.foreign_key :active_storage_blobs, column: :blob_id
end

create_table :active_storage_variant_records, id: primary_key_type do |t|
t.belongs_to :blob, null: false, index: false, type: foreign_key_type
t.string :variation_digest, null: false

t.index [ :blob_id, :variation_digest ], name: :index_active_storage_variant_records_uniqueness, unique: true
t.index [:blob_id, :variation_digest], name: :index_active_storage_variant_records_uniqueness, unique: true
t.foreign_key :active_storage_blobs, column: :blob_id
end
end

private
def primary_and_foreign_key_types
config = Rails.configuration.generators
setting = config.options[config.orm][:primary_key_type]
primary_key_type = setting || :primary_key
foreign_key_type = setting || :bigint
[primary_key_type, foreign_key_type]
end

def primary_and_foreign_key_types
config = Rails.configuration.generators
setting = config.options[config.orm][:primary_key_type]
primary_key_type = setting || :primary_key
foreign_key_type = setting || :bigint
[primary_key_type, foreign_key_type]
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@ def change

t.timestamps

t.index [ :record_type, :record_id, :name ], name: "index_action_text_rich_texts_uniqueness", unique: true
t.index [:record_type, :record_id, :name], name: "index_action_text_rich_texts_uniqueness", unique: true
end
end

private
def primary_and_foreign_key_types
config = Rails.configuration.generators
setting = config.options[config.orm][:primary_key_type]
primary_key_type = setting || :primary_key
foreign_key_type = setting || :bigint
[primary_key_type, foreign_key_type]
end

def primary_and_foreign_key_types
config = Rails.configuration.generators
setting = config.options[config.orm][:primary_key_type]
primary_key_type = setting || :primary_key
foreign_key_type = setting || :bigint
[primary_key_type, foreign_key_type]
end
end

0 comments on commit 4d61be2

Please sign in to comment.