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.

23 lines
364 B

  1. source 'http://rubygems.org'
  2. ruby '2.1.6'
  3. gem 'hashie'
  4. gem 'slack-api', '~> 1.1.6', require: 'slack'
  5. gem 'puma'
  6. gem 'sinatra'
  7. gem 'activesupport'
  8. gem 'dentaku'
  9. group :development, :test do
  10. gem 'rake', '~> 10.4'
  11. gem 'rubocop', '0.31.0'
  12. gem 'foreman'
  13. end
  14. group :test do
  15. gem 'rspec', '~> 3.2'
  16. gem 'rack-test', '~> 0.6.2'
  17. gem 'vcr'
  18. gem 'webmock'
  19. end