Sha256: c0150798978753272ec46467bc05f15f72fa72860ccaff030f0401ddb7fa0392

Contents?: true

Size: 641 Bytes

Versions: 2

Compression:

Stored size: 641 Bytes

Contents

require "simplecov"
require "coveralls"
SimpleCov.formatters = [
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start { add_filter "/spec/" }

require "lita-cleverbot"
require "lita/rspec"

Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f }

# A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
# was generated with Lita 4, the compatibility mode should be left disabled.
Lita.version_3_compatibility_mode = false

Lita.configure do |config|
  config.handlers.cleverbot.api_user = 'apiuser'
  config.handlers.cleverbot.api_key = 'apikey'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lita-cleverbot-1.0.1 spec/spec_helper.rb
lita-cleverbot-1.0.0 spec/spec_helper.rb