class Sentry::Config

Defined in:

sentry.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new #

Initializing an empty configuration provides no default values.


[View source]

Class Method Detail

def self.shard_name : String | Nil #

.shard_name is set as a class property so that it can be inferred from the shard.yml in the project directory.


[View source]
def self.shard_name=(shard_name : String | Nil) #

.shard_name is set as a class property so that it can be inferred from the shard.yml in the project directory.


[View source]

Instance Method Detail

def build #

[View source]
def build=(new_command : String) #

[View source]
def build_args #

[View source]
def display_name #

[View source]
def display_name! #

[View source]
def display_name=(new_display_name : String) #

[View source]
def merge!(other : self) #

[View source]
def run #

[View source]
def run=(new_command : String) #

[View source]
def run_args #

[View source]
def sets_build_command=(sets_build_command : Bool) #

[View source]
def sets_build_command? : Bool #

[View source]
def sets_display_name=(sets_display_name : Bool) #

[View source]
def sets_display_name? : Bool #

[View source]
def sets_run_command=(sets_run_command : Bool) #

[View source]
def sets_run_command? : Bool #

[View source]
def should_build=(should_build : Bool) #

[View source]
def should_build? #

[View source]
def to_s(io : IO) #
Description copied from class Reference

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>

[View source]