lita-goforit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/.gitignore +17 -0
 - data/.travis.yml +15 -0
 - data/Gemfile +3 -0
 - data/LICENSE +14 -0
 - data/README.md +29 -0
 - data/Rakefile +6 -0
 - data/lib/lita-goforit.rb +12 -0
 - data/lib/lita/handlers/goforit.rb +38 -0
 - data/lita-goforit.gemspec +26 -0
 - data/locales/en.yml +4 -0
 - data/spec/lita/handlers/goforit_spec.rb +19 -0
 - data/spec/spec_helper.rb +14 -0
 - data/templates/.gitkeep +0 -0
 - metadata +172 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 6a49758d0f4090d73b36343f1786b80c2793c92f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 174e2aae639b4c840df3335015291fade92b7f94
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 33eaa34c75fe28edb693f4898c92db6cdb811dbdd0736951de135692d4fba4629e0f64b9a66515192872da39f84a8e103edbab1dadccecf3a82e8be919172c41
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 347eead3eaedce83d8d4626779ec3dc990377fc65ae49ae9d6a363c5c0018497b67d453a81696f561f910b7bad305af3801063263ca333148decc075f698c767
         
     | 
    
        data/.gitignore
    ADDED
    
    
    
        data/.travis.yml
    ADDED
    
    
    
        data/Gemfile
    ADDED
    
    
    
        data/LICENSE
    ADDED
    
    | 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
                        DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
         
     | 
| 
      
 2 
     | 
    
         
            +
                                Version 2, December 2004
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
             Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
             Everyone is permitted to copy and distribute verbatim or modified
         
     | 
| 
      
 7 
     | 
    
         
            +
             copies of this license document, and changing it is allowed as long
         
     | 
| 
      
 8 
     | 
    
         
            +
             as the name is changed.
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                        DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
         
     | 
| 
      
 11 
     | 
    
         
            +
               TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              0. You just DO WHAT THE FUCK YOU WANT TO.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
    
        data/README.md
    ADDED
    
    | 
         @@ -0,0 +1,29 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # lita-goforit
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            [](https://travis-ci.org/miketheman/lita-goforit)
         
     | 
| 
      
 4 
     | 
    
         
            +
            [](https://coveralls.io/r/miketheman/lita-goforit)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Lighten the mood with a gopher!
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            Gladly accepting pull requests with new gopher URLs.
         
     | 
| 
      
 9 
     | 
    
         
            +
            See `lib/lita/handlers/goforit.rb` for the right place to put new ones.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            ## Installation
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            Add `lita-goforit` to your Lita instance's Gemfile:
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            ``` ruby
         
     | 
| 
      
 16 
     | 
    
         
            +
            gem 'lita-goforit'
         
     | 
| 
      
 17 
     | 
    
         
            +
            ```
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            ## Configuration
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            None
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            ## Usage
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            Saying terms like 'go for it' and 'went for it' will respond with an image or video.
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            ## Prior Art
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            Leans heavily on the concept from [Hubot scripts](https://github.com/github/hubot-scripts/blob/master/src/scripts/go-for-it.coffee).
         
     | 
    
        data/Rakefile
    ADDED
    
    
    
        data/lib/lita-goforit.rb
    ADDED
    
    | 
         @@ -0,0 +1,12 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'lita'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Lita.load_locales Dir[File.expand_path(
         
     | 
| 
      
 4 
     | 
    
         
            +
              File.join('..', '..', 'locales', '*.yml'), __FILE__
         
     | 
| 
      
 5 
     | 
    
         
            +
            )]
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            require 'lita/handlers/goforit'
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            Lita::Handlers::GoForIt.template_root File.expand_path(
         
     | 
| 
      
 10 
     | 
    
         
            +
              File.join('..', '..', 'templates'),
         
     | 
| 
      
 11 
     | 
    
         
            +
             __FILE__
         
     | 
| 
      
 12 
     | 
    
         
            +
            )
         
     | 
| 
         @@ -0,0 +1,38 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            module Lita
         
     | 
| 
      
 2 
     | 
    
         
            +
              module Handlers
         
     | 
| 
      
 3 
     | 
    
         
            +
                class GoForIt < Handler
         
     | 
| 
      
 4 
     | 
    
         
            +
                  route(%r{(went|go(ing|es)?) for it}i, :gopher)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
                  def gopher(response)
         
     | 
| 
      
 7 
     | 
    
         
            +
                    response.reply GOPHERS.sample
         
     | 
| 
      
 8 
     | 
    
         
            +
                  end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
                  # Add any good gopher url to this list
         
     | 
| 
      
 11 
     | 
    
         
            +
                  GOPHERS = %w(
         
     | 
| 
      
 12 
     | 
    
         
            +
                    http://25.media.tumblr.com/tumblr_m6k6iluYFU1qa4vxjo1_500.jpg
         
     | 
| 
      
 13 
     | 
    
         
            +
                    http://blogs.citypages.com/gimmenoise/Gophers_Call_Me.jpg
         
     | 
| 
      
 14 
     | 
    
         
            +
                    http://cdn.cutestpaw.com/wp-content/uploads/2012/06/l-Gopher-greeting.jpg
         
     | 
| 
      
 15 
     | 
    
         
            +
                    http://colourlovers.com.s3.amazonaws.com/blog/wp-content/uploads/2008/09/cg/Gopher-Broke.jpg
         
     | 
| 
      
 16 
     | 
    
         
            +
                    http://dailypicksandflicks.com/wp-content/uploads/2012/01/stand-back-i-got-this-gopher.jpg
         
     | 
| 
      
 17 
     | 
    
         
            +
                    http://farm3.staticflickr.com/2268/1992861119_88028372b1_o.jpg
         
     | 
| 
      
 18 
     | 
    
         
            +
                    http://funnyasduck.net/wp-content/uploads/2012/12/funny-fat-squirrel-gopher-groundhog-egg-atop-burger-dont-mind-if-do-pics.jpg
         
     | 
| 
      
 19 
     | 
    
         
            +
                    http://i.huffpost.com/gen/1365387/thumbs/n-BILL-MURRAY-CADDYSHACK-large570.jpg
         
     | 
| 
      
 20 
     | 
    
         
            +
                    http://i395.photobucket.com/albums/pp33/GalenSwyers/armed_gopher.jpg
         
     | 
| 
      
 21 
     | 
    
         
            +
                    http://notalwaysrelated.com/wp-content/uploads/2012/11/3r7hje.jpeg
         
     | 
| 
      
 22 
     | 
    
         
            +
                    http://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Urocitellus_columbianus_Alberta_Martybugs.jpg/220px-Urocitellus_columbianus_Alberta_Martybugs.jpg
         
     | 
| 
      
 23 
     | 
    
         
            +
                    http://weknowmemes.com/generator/uploads/generated/g1381159009196981166.jpg
         
     | 
| 
      
 24 
     | 
    
         
            +
                    http://www.bakingdom.com/wp-content/uploads/2010/09/caddyshack-gopher.jpg
         
     | 
| 
      
 25 
     | 
    
         
            +
                    http://www.lawlz.org/wp-content/uploads/2012/07/gopher-tech-support-have-you-tried-chewing-on-the-cable-computer-meme.jpg
         
     | 
| 
      
 26 
     | 
    
         
            +
                    http://www.quickmeme.com/img/6f/6f8cb22cc6aff2709fc3d760b85b84f6fdbcb4aca0285bd40d8c5a7f74280f9b.jpg
         
     | 
| 
      
 27 
     | 
    
         
            +
                    http://www.quickmeme.com/img/8e/8eb558b54f0a0522520d05f4c990536b646e63b1d42d8984fbc42ff082a05ee1.jpg
         
     | 
| 
      
 28 
     | 
    
         
            +
                    http://www.sixprizes.com/wp-content/uploads/gopher_caddyshack.jpg
         
     | 
| 
      
 29 
     | 
    
         
            +
                    http://www.tnt-audio.com/jpeg/gopher.jpg
         
     | 
| 
      
 30 
     | 
    
         
            +
                    http://www.youtube.com/watch?v=y8Kyi0WNg40
         
     | 
| 
      
 31 
     | 
    
         
            +
                    http://www.zerotocruising.com/wp-content/uploads/2013/04/groundhog.jpg
         
     | 
| 
      
 32 
     | 
    
         
            +
                    https://i.chzbgr.com/maxW500/1415148288/hF21C98D1/
         
     | 
| 
      
 33 
     | 
    
         
            +
                  )
         
     | 
| 
      
 34 
     | 
    
         
            +
                end
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                Lita.register_handler(GoForIt)
         
     | 
| 
      
 37 
     | 
    
         
            +
              end
         
     | 
| 
      
 38 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,26 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Gem::Specification.new do |spec|
         
     | 
| 
      
 2 
     | 
    
         
            +
              spec.name          = 'lita-goforit'
         
     | 
| 
      
 3 
     | 
    
         
            +
              spec.version       = '0.1.0'
         
     | 
| 
      
 4 
     | 
    
         
            +
              spec.authors       = ['Mike Fiedler']
         
     | 
| 
      
 5 
     | 
    
         
            +
              spec.email         = ['miketheman@gmail.com']
         
     | 
| 
      
 6 
     | 
    
         
            +
              spec.description   = 'Lighten the mood with a gopher'
         
     | 
| 
      
 7 
     | 
    
         
            +
              spec.summary       = 'Respond to messages with an image'
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.homepage      = 'https://github.com/miketheman/lita-goforit'
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.license       = 'WTFPL'
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.metadata      = { 'lita_plugin_type' => 'handler' }
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              spec.files         = `git ls-files`.split($/)
         
     | 
| 
      
 13 
     | 
    
         
            +
              spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
         
     | 
| 
      
 15 
     | 
    
         
            +
              spec.require_paths = ['lib']
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              spec.add_runtime_dependency 'lita', '>= 4.3'
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              spec.add_development_dependency 'bundler', '~> 1.3'
         
     | 
| 
      
 20 
     | 
    
         
            +
              spec.add_development_dependency 'pry-byebug'
         
     | 
| 
      
 21 
     | 
    
         
            +
              spec.add_development_dependency 'rake'
         
     | 
| 
      
 22 
     | 
    
         
            +
              spec.add_development_dependency 'rack-test'
         
     | 
| 
      
 23 
     | 
    
         
            +
              spec.add_development_dependency 'rspec', '>= 3.0.0'
         
     | 
| 
      
 24 
     | 
    
         
            +
              spec.add_development_dependency 'simplecov'
         
     | 
| 
      
 25 
     | 
    
         
            +
              spec.add_development_dependency 'coveralls'
         
     | 
| 
      
 26 
     | 
    
         
            +
            end
         
     | 
    
        data/locales/en.yml
    ADDED
    
    
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            describe Lita::Handlers::GoForIt, lita_handler: true do
         
     | 
| 
      
 4 
     | 
    
         
            +
              it 'listens for messages and routes them' do
         
     | 
| 
      
 5 
     | 
    
         
            +
                expect(subject).to route('go for it').to :gopher
         
     | 
| 
      
 6 
     | 
    
         
            +
                expect(subject).to route('goes for it').to :gopher
         
     | 
| 
      
 7 
     | 
    
         
            +
                expect(subject).to route('going for it').to :gopher
         
     | 
| 
      
 8 
     | 
    
         
            +
                expect(subject).to route('went for it').to :gopher
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              it 'does not route another plugin message' do
         
     | 
| 
      
 12 
     | 
    
         
            +
                expect(subject).to_not route('sandwich')
         
     | 
| 
      
 13 
     | 
    
         
            +
              end
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              it 'replies with a URL' do
         
     | 
| 
      
 16 
     | 
    
         
            +
                send_message('go for it')
         
     | 
| 
      
 17 
     | 
    
         
            +
                expect(replies.last).to match(/http/)
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
    
        data/spec/spec_helper.rb
    ADDED
    
    | 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'simplecov'
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'coveralls'
         
     | 
| 
      
 3 
     | 
    
         
            +
            SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
         
     | 
| 
      
 4 
     | 
    
         
            +
              SimpleCov::Formatter::HTMLFormatter,
         
     | 
| 
      
 5 
     | 
    
         
            +
              Coveralls::SimpleCov::Formatter
         
     | 
| 
      
 6 
     | 
    
         
            +
            ]
         
     | 
| 
      
 7 
     | 
    
         
            +
            SimpleCov.start { add_filter '/spec/' }
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            require 'lita-goforit'
         
     | 
| 
      
 10 
     | 
    
         
            +
            require 'lita/rspec'
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            # A compatibility mode is provided for older plugins upgrading from Lita 3. Since this plugin
         
     | 
| 
      
 13 
     | 
    
         
            +
            # was generated with Lita 4, the compatibility mode should be left disabled.
         
     | 
| 
      
 14 
     | 
    
         
            +
            Lita.version_3_compatibility_mode = false
         
     | 
    
        data/templates/.gitkeep
    ADDED
    
    | 
         
            File without changes
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,172 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: lita-goforit
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Mike Fiedler
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2015-05-05 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: lita
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '4.3'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '1.3'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '1.3'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: pry-byebug
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 55 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 56 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 57 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 58 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 59 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 60 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 61 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 62 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 63 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 64 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 69 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 70 
     | 
    
         
            +
              name: rack-test
         
     | 
| 
      
 71 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 72 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 73 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 74 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 75 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 76 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 77 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 78 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 79 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 80 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 81 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 82 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 83 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 84 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 85 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 86 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 87 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 88 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 89 
     | 
    
         
            +
                    version: 3.0.0
         
     | 
| 
      
 90 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 91 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 92 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 93 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 94 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 95 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 96 
     | 
    
         
            +
                    version: 3.0.0
         
     | 
| 
      
 97 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 98 
     | 
    
         
            +
              name: simplecov
         
     | 
| 
      
 99 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 100 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 101 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 102 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 103 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 104 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 105 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 106 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 107 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 108 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 109 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 110 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 111 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 112 
     | 
    
         
            +
              name: coveralls
         
     | 
| 
      
 113 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 114 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 115 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 116 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 117 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 118 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 119 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 120 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 121 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 122 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 123 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 124 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 125 
     | 
    
         
            +
            description: Lighten the mood with a gopher
         
     | 
| 
      
 126 
     | 
    
         
            +
            email:
         
     | 
| 
      
 127 
     | 
    
         
            +
            - miketheman@gmail.com
         
     | 
| 
      
 128 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 129 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 130 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 131 
     | 
    
         
            +
            files:
         
     | 
| 
      
 132 
     | 
    
         
            +
            - ".gitignore"
         
     | 
| 
      
 133 
     | 
    
         
            +
            - ".travis.yml"
         
     | 
| 
      
 134 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 135 
     | 
    
         
            +
            - LICENSE
         
     | 
| 
      
 136 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 137 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 138 
     | 
    
         
            +
            - lib/lita-goforit.rb
         
     | 
| 
      
 139 
     | 
    
         
            +
            - lib/lita/handlers/goforit.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - lita-goforit.gemspec
         
     | 
| 
      
 141 
     | 
    
         
            +
            - locales/en.yml
         
     | 
| 
      
 142 
     | 
    
         
            +
            - spec/lita/handlers/goforit_spec.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - templates/.gitkeep
         
     | 
| 
      
 145 
     | 
    
         
            +
            homepage: https://github.com/miketheman/lita-goforit
         
     | 
| 
      
 146 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 147 
     | 
    
         
            +
            - WTFPL
         
     | 
| 
      
 148 
     | 
    
         
            +
            metadata:
         
     | 
| 
      
 149 
     | 
    
         
            +
              lita_plugin_type: handler
         
     | 
| 
      
 150 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 151 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 152 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 153 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 154 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 155 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 156 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 157 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 158 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 159 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 160 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 161 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 162 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 163 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 164 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 165 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 166 
     | 
    
         
            +
            rubygems_version: 2.4.5
         
     | 
| 
      
 167 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 168 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 169 
     | 
    
         
            +
            summary: Respond to messages with an image
         
     | 
| 
      
 170 
     | 
    
         
            +
            test_files:
         
     | 
| 
      
 171 
     | 
    
         
            +
            - spec/lita/handlers/goforit_spec.rb
         
     | 
| 
      
 172 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     |