├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── slackcat ├── lib ├── slackcat.rb └── slackcat │ └── version.rb └── slackcat.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/slackcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/bin/slackcat -------------------------------------------------------------------------------- /lib/slackcat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/lib/slackcat.rb -------------------------------------------------------------------------------- /lib/slackcat/version.rb: -------------------------------------------------------------------------------- 1 | module Slackcat 2 | VERSION = "0.2.5" 3 | end 4 | -------------------------------------------------------------------------------- /slackcat.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlister/slackcat/HEAD/slackcat.gemspec --------------------------------------------------------------------------------