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.

18 lines
366 B

  1. require 'rubygems'
  2. require 'bundler'
  3. Bundler.setup :default, :development
  4. unless ENV['RACK_ENV'] == 'production'
  5. require 'rspec/core'
  6. require 'rspec/core/rake_task'
  7. RSpec::Core::RakeTask.new(:spec) do |spec|
  8. spec.pattern = FileList['spec/**/*_spec.rb']
  9. end
  10. require 'rubocop/rake_task'
  11. RuboCop::RakeTask.new
  12. task default: [:rubocop, :spec]
  13. end