A Slack Bot that pulls Pixiv information and posts the full image(s) into Slack, with iOS shortcuts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
406 B

9 years ago
  1. require File.expand_path('../config/environment', __FILE__)
  2. require 'slack-ruby-bot/version'
  3. require 'slack-ruby-bot/about'
  4. require 'slack-ruby-bot/config'
  5. require 'slack-ruby-bot/hooks'
  6. module SlackRubyBot
  7. class << self
  8. def configure
  9. block_given? ? yield(Config) : Config
  10. end
  11. def config
  12. Config
  13. end
  14. end
  15. end
  16. require 'slack-ruby-bot/commands'
  17. require 'slack-ruby-bot/app'