Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sqlite3 from 2.1.0 to 2.5.0 #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -71,8 +71,8 @@ GEM
rubocop-rails
ruby-progressbar (1.13.0)
securerandom (0.3.1)
sqlite3 (2.1.0-arm64-darwin)
sqlite3 (2.1.0-x86_64-linux-gnu)
sqlite3 (2.5.0-arm64-darwin)
sqlite3 (2.5.0-x86_64-linux-gnu)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.6.0)

Unchanged files with check annotations Beta

# frozen_string_literal: true
module PropInitializer::Null
def self.inspect

Check failure on line 4 in lib/prop_initializer/null.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
"PropInitializer::Null"

Check failure on line 5 in lib/prop_initializer/null.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
end

Check failure on line 6 in lib/prop_initializer/null.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
freeze

Check failure on line 8 in lib/prop_initializer/null.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
end
end
property = __prop__initializer_property_class__.new(
name:,

Check failure on line 30 in lib/prop_initializer/properties.rb

GitHub Actions / lint

Lint/Syntax: unexpected token tCOMMA (Using Ruby 2.7 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)
kind:,
reader:,
writer:,
# frozen_string_literal: true
# @api private
class PropInitializer::Properties::Schema

Check failure on line 4 in lib/prop_initializer/properties/schema.rb

GitHub Actions / lint

Lint/Syntax: class definition in method body (Using Ruby 2.7 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)
include Enumerable
def initialize(properties_index: {}, sorted_properties: [])
)
end
def each(&)

Check failure on line 37 in lib/prop_initializer/properties/schema.rb

GitHub Actions / lint

Lint/Syntax: unexpected token tRPAREN (Using Ruby 2.7 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)
@sorted_properties.each(&)

Check failure on line 38 in lib/prop_initializer/properties/schema.rb

GitHub Actions / lint

Lint/Syntax: unexpected token tRPAREN (Using Ruby 2.7 parser; configure using `TargetRubyVersion` parameter, under `AllCops`)
end
def size
# frozen_string_literal: true
class PropInitializer::Property
ORDER = { :positional => 0, :* => 1, :keyword => 2, :** => 3, :& => 4 }.freeze

Check failure on line 4 in lib/prop_initializer/property.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
RUBY_KEYWORDS = %i[alias and begin break case class def do else elsif end ensure false for if in module next nil not or redo rescue retry return self super then true undef unless until when while yield].to_h { |k| [k, "__#{k}__"] }.freeze

Check failure on line 5 in lib/prop_initializer/property.rb

GitHub Actions / lint

Layout/IndentationStyle: Tab detected in indentation.
VISIBILITY_OPTIONS = Set[false, :private, :protected, :public].freeze
KIND_OPTIONS = Set[:positional, :*, :keyword, :**, :&].freeze