lita-onewheel-giphy 0.3.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 392fe28fa16d20506b7f0f4f2998c5a75efb1bba
4
- data.tar.gz: bf71726537d047ad3562d5640eeea54d300ba55a
3
+ metadata.gz: a77f23164cbd788f3951fb343cd30a247fc70d75
4
+ data.tar.gz: 491b3dee8cf8a6a920f9c5fbf1d1fdb0316c6b5d
5
5
  SHA512:
6
- metadata.gz: d391c7b7364b1b6941c41dc9edc43751fa57af624d2e3f6bc2735069152fbe59b6e11633134327990fc5d2d07b8816a0962cb00f0219859074db5013b938b692
7
- data.tar.gz: 70dbf8f082b35a03faf8f123789089b9e0de97e35b5dcf07d6d323abcc97150d95bf6d05ff088fdfe444dc174c4ab7985a0bad92d4ede0e0dc56f1459570d570
6
+ metadata.gz: 97d6c86c26e9c3d919f8a1e5d495f0201e25a3c871e81db9e29512d32addcb1721f67a3a2dae1105b76d184c282c327ca78e1e78c72d2746f593cb286aa301a9
7
+ data.tar.gz: 51626b931b10c82e955d605cad957401af2d9432ca6f2bc58edd12a61e89b3f4f8d1d3dda396cdf3012da4776fffc2016104ce932a6ebdffbb076d8e59347a0f
data/README.rst CHANGED
@@ -1,11 +1,16 @@
1
- # lita-onewheel-giphy
1
+ lita-onewheel-giphy
2
+ -------------------
2
3
 
3
- [![Build Status](https://travis-ci.org/onewheelskyward/lita-onewheel-giphy.png?branch=master)](https://travis-ci.org/onewheelskyward/lita-onewheel-giphy)
4
- [![Coverage Status](https://coveralls.io/repos/onewheelskyward/lita-onewheel-giphy/badge.png)](https://coveralls.io/r/onewheelskyward/lita-onewheel-giphy)
4
+ .. image:: https://travis-ci.org/onewheelskyward/lita-onewheel-giphy.svg?branch=master
5
+ .. image:: https://coveralls.io/repos/github/onewheelskyward/lita-onewheel-giphy/badge.svg?branch=master
6
+
7
+ Deprecated
8
+ ----
5
9
 
6
10
  Description
7
11
  ----
8
- Aims to be a complete implementation of the Giphy api. https://github.com/giphy/GiphyAPI
12
+ Aimed to be a complete implementation of the Giphy api. https://github.com/giphy/GiphyAPI
13
+ It turns out they're not as good at search as Google, so I've put this functionality into https://github.com/onewheelskyward/lita-onewheel-images
9
14
 
10
15
  Installation
11
16
  ----
@@ -28,5 +33,3 @@ Implementation list:
28
33
  - random NOPE
29
34
  - trending NOPE
30
35
  - stickers (search, translate, random, trending) NOPE NOPE NOPE NOPE
31
-
32
-
@@ -13,7 +13,8 @@ module Lita
13
13
  command: true,
14
14
  help: {'giphy' => 'Returns a random Giphy image. Powered by Giphy! http://giphy.com'}
15
15
  route /^giphy\s+(.+)$/,
16
- :search,
16
+ :translate,
17
+ # :search,
17
18
  command: true,
18
19
  help: {'giphy [keyword]' => 'Returns a random Giphy image with the specified keyword applied.'}
19
20
  route /^giphytrending$/,
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'lita-onewheel-giphy'
3
- spec.version = '0.3.2'
3
+ spec.version = '0.4.0'
4
4
  spec.authors = ['Andrew Kreps']
5
5
  spec.email = ['andrew.kreps@gmail.com']
6
6
  spec.description = 'Lita chat interface to giphy api for MOAR GIFS'
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
15
  spec.require_paths = ['lib']
16
16
 
17
- spec.add_runtime_dependency 'lita', '~> 4.7'
17
+ spec.add_runtime_dependency 'lita', '~> 4'
18
18
  spec.add_runtime_dependency 'rest-client', '~> 1.6'
19
19
 
20
20
  spec.add_development_dependency 'bundler', '~> 1.3'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-onewheel-giphy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kreps
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-20 00:00:00.000000000 Z
11
+ date: 2017-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lita
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.7'
19
+ version: '4'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4.7'
26
+ version: '4'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rest-client
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -165,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
165
  version: '0'
166
166
  requirements: []
167
167
  rubyforge_project:
168
- rubygems_version: 2.5.1
168
+ rubygems_version: 2.5.2
169
169
  signing_key:
170
170
  specification_version: 4
171
171
  summary: Aims to be a complete implementation of the Giphy api. https://github.com/giphy/GiphyAPI