-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
233 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,4 +154,4 @@ jobs: | |
|
||
- name: Rubocop | ||
run: | | ||
bundle exec rubocop | ||
bundle exec rubocop -c rubocop.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
# Specify your gem's dependencies in inner_performance.gemspec. | ||
gemspec | ||
|
||
eval_gemfile File.expand_path('spec/gemfiles/rails_8.0.gemfile', __dir__) | ||
eval_gemfile File.expand_path("spec/gemfiles/rails_8.0.gemfile", __dir__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'bundler/setup' | ||
require "bundler/setup" | ||
|
||
APP_RAKEFILE = File.expand_path('spec/dummy/Rakefile', __dir__) | ||
load 'rails/tasks/engine.rake' | ||
APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__) | ||
load "rails/tasks/engine.rake" | ||
|
||
load 'rails/tasks/statistics.rake' | ||
load "rails/tasks/statistics.rake" | ||
|
||
require 'bundler/gem_tasks' | ||
require "bundler/gem_tasks" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative 'lib/inner_performance/version' | ||
require_relative "lib/inner_performance/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = 'inner_performance' | ||
spec.name = "inner_performance" | ||
spec.version = InnerPerformance::VERSION | ||
spec.authors = ['mbajur'] | ||
spec.email = ['mbajur@gmail.com'] | ||
spec.homepage = 'https://github.com/mbajur' | ||
spec.summary = 'Database-backed modest performance monitoring tool for your Rails app.' | ||
spec.description = 'Database-backed modest performance monitoring tool for your Rails app.' | ||
spec.authors = ["mbajur"] | ||
spec.email = ["mbajur@gmail.com"] | ||
spec.homepage = "https://github.com/mbajur" | ||
spec.summary = "Database-backed modest performance monitoring tool for your Rails app." | ||
spec.description = "Database-backed modest performance monitoring tool for your Rails app." | ||
|
||
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host" | ||
# to allow pushing to a single host or delete this section to allow pushing to any host. | ||
|
||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = 'https://github.com/mbajur/inner_performance' | ||
spec.metadata['changelog_uri'] = 'https://github.com/mbajur/inner_performance' | ||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["source_code_uri"] = "https://github.com/mbajur/inner_performance" | ||
spec.metadata["changelog_uri"] = "https://github.com/mbajur/inner_performance" | ||
|
||
spec.files = Dir.chdir(File.expand_path(__dir__)) do | ||
Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md'] | ||
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"] | ||
end | ||
|
||
spec.add_dependency 'activejob', '>= 7.1.5' | ||
spec.add_dependency 'pagy', '>= 9.3.1' | ||
spec.add_dependency 'rails', '>= 7.1.5' | ||
spec.add_dependency 'ransack', '>= 4.2.1' | ||
spec.add_dependency("activejob", ">= 7.1.5") | ||
spec.add_dependency("pagy", ">= 9.3.1") | ||
spec.add_dependency("rails", ">= 7.1.5") | ||
spec.add_dependency("ransack", ">= 4.2.1") | ||
|
||
spec.add_development_dependency 'factory_bot' | ||
spec.add_development_dependency 'rspec-rails' | ||
spec.add_development_dependency("factory_bot") | ||
spec.add_development_dependency("rspec-rails") | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module InnerPerformance | ||
VERSION = '0.1.4' | ||
VERSION = "0.1.4" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
inherit_from: .rubocop_todo.yml | ||
|
||
inherit_gem: | ||
rubocop-shopify: rubocop.yml |
Oops, something went wrong.