Skip to content

Commit

Permalink
Bump smart_properties version
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Terrasa <[email protected]>
  • Loading branch information
Morriar committed Sep 16, 2021
1 parent 114ceb5 commit d24fdaf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ GEM
connection_pool (>= 2.2.2)
rack (~> 2.0)
redis (>= 4.2.0)
smart_properties (1.15.0)
smart_properties (1.16.2)
sorbet (0.5.9125)
sorbet-static (= 0.5.9125)
sorbet-runtime (0.5.9125)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# DO NOT EDIT MANUALLY
# This is an autogenerated file for types exported from the `smart_properties` gem.
# Please instead update this file by running `tapioca sync`.
# Please instead update this file by running `bin/tapioca gem smart_properties`.

# typed: true

module SmartProperties
mixes_in_class_methods(::SmartProperties::ClassMethods)
mixes_in_class_methods ::SmartProperties::ClassMethods
mixes_in_class_methods ::SmartProperties::ModuleMethods

def initialize(*args, &block); end

def [](name); end
def []=(name, value); end

class << self

private

def included(base); end
Expand All @@ -24,9 +24,9 @@ class SmartProperties::AssignmentError < ::SmartProperties::Error
def initialize(sender, property, message); end

def property; end
def property=(_); end
def property=(_arg0); end
def sender; end
def sender=(_); end
def sender=(_arg0); end
end

module SmartProperties::ClassMethods
Expand All @@ -38,28 +38,25 @@ module SmartProperties::ClassMethods
def property!(name, options = T.unsafe(nil)); end
end

class SmartProperties::ConfigurationError < ::SmartProperties::Error
end
class SmartProperties::ConfigurationError < ::SmartProperties::Error; end

class SmartProperties::ConstructorArgumentForwardingError < ::SmartProperties::Error
def initialize(positional_arguments, keyword_arguments); end


private

def generate_description(argument_type, argument_number); end
end

class SmartProperties::Error < ::ArgumentError
end
class SmartProperties::Error < ::ArgumentError; end

class SmartProperties::InitializationError < ::SmartProperties::Error
def initialize(sender, properties); end

def properties; end
def properties=(_); end
def properties=(_arg0); end
def sender; end
def sender=(_); end
def sender=(_arg0); end
def to_hash; end
end

Expand All @@ -68,7 +65,7 @@ class SmartProperties::InvalidValueError < ::SmartProperties::AssignmentError

def to_hash; end
def value; end
def value=(_); end
def value=(_arg0); end

private

Expand All @@ -81,6 +78,10 @@ class SmartProperties::MissingValueError < ::SmartProperties::AssignmentError
def to_hash; end
end

module SmartProperties::ModuleMethods
def included(target); end
end

class SmartProperties::Property
def initialize(name, attrs = T.unsafe(nil)); end

Expand Down Expand Up @@ -115,11 +116,10 @@ class SmartProperties::Property
end

SmartProperties::Property::ALLOWED_DEFAULT_CLASSES = T.let(T.unsafe(nil), Array)

SmartProperties::Property::MODULE_REFERENCE = T.let(T.unsafe(nil), Symbol)

class SmartProperties::PropertyCollection
include(::Enumerable)
include ::Enumerable

def initialize; end

Expand All @@ -136,11 +136,11 @@ class SmartProperties::PropertyCollection
protected

def children; end
def children=(_); end
def children=(_arg0); end
def collection; end
def collection=(_); end
def collection=(_arg0); end
def collection_with_parent_collection; end
def collection_with_parent_collection=(_); end
def collection_with_parent_collection=(_arg0); end
def notify_children; end
def refresh(parent_collection); end

Expand All @@ -150,19 +150,18 @@ class SmartProperties::PropertyCollection
end

SmartProperties::VERSION = T.let(T.unsafe(nil), String)

module SmartProperties::Validations
end
module SmartProperties::Validations; end

class SmartProperties::Validations::Ancestor
include(::SmartProperties)
extend(::SmartProperties::ClassMethods)
include ::SmartProperties
extend ::SmartProperties::ClassMethods
extend ::SmartProperties::ModuleMethods

def to_proc; end
def to_s; end
def validate(klass); end

class << self
def must_be(*_); end
def must_be(*_arg0); end
end
end

0 comments on commit d24fdaf

Please sign in to comment.