Sha256: 55b184a7b9089e0ce66f92a8c26a3a0ea846c575ce33c0055cc510878eb53150

Contents?: true

Size: 981 Bytes

Versions: 4

Compression:

Stored size: 981 Bytes

Contents

# frozen_string_literal: true

Lita.configure do |config|
  # The name your robot will use.
  config.robot.name = "Lita"

  ## An array identifiers for users who are considered administrators. These
  ## users have the ability to add and remove other users from authorization
  ## groups. What is considered a user ID will change depending on which adapter
  ## you use.
  # config.robot.admins = ["1", "2"]

  # The adapter you want to connect with. Make sure you've added the
  # appropriate gem to the Gemfile.
  config.robot.adapter = :shell

  ## Example: Set options for the chosen adapter.
  # config.adapter.username = "myname"
  # config.adapter.password = "secret"

  ## Example: Set options for the Redis connection.
  # config.redis[:host] = "127.0.0.1"
  # config.redis[:port] = 1234

  ## Example: Set configuration for any loaded handlers. See the handler's
  ## documentation for options.
  # config.handlers.example_handler.example_attribute = "example value"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rita-5.0.0.alpha.4 templates/robot/lita_config.rb
rita-5.0.0.alpha.3 templates/robot/lita_config.rb
rita-5.0.0.alpha.2 templates/robot/lita_config.rb
rita-5.0.0.alpha.1 templates/robot/lita_config.rb