lita-vader 0.1.0 → 0.1.1

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: 1dfb06da70c6c9985de3327359c63342f0c476c0
4
- data.tar.gz: 521985e28543fb6f38ee1cccd0f1ca1b8be2852d
3
+ metadata.gz: 0c4cd2d2d6c8dda73380c4c6158dc55be03ad48a
4
+ data.tar.gz: 4b1fc0f83dd5d6beb0d6c769c286be6563d0e751
5
5
  SHA512:
6
- metadata.gz: f34e825a0ca7e2374dfcd65b197f6cc6bf0a5bae921e88233a194bb95c77c092cdfd501e3d79f9ccab34ab2b11422d10476d6f5be29188bcbdd1114afd0cd1bd
7
- data.tar.gz: c54458489d16c6c89406397aea97292583a3c7df24232c7f63c694bfdea626fa6d3eef602225d3374b3ca4f6b39e232a0de790228f40521a1e51a84d57f13c25
6
+ metadata.gz: 002c7872157bdf05dcf1f8c53033bbc776634e85666faba8fca9c9f0145744549029f82d57a0f0e6bda799d265422f703b02eef95095721939b7ddbfff03beee
7
+ data.tar.gz: 4dc3982bd39fa230e24506b96692e168d35277dbc8e5cbbb087114fc491b25a3b2ebcf1bd0f920e998da66d178becf1dafdc0e651d2cd8ced6f323757c7f3792
data/README.md CHANGED
@@ -25,7 +25,7 @@ The following is how you ask Lita who Luke's father is. You can specify any user
25
25
 
26
26
  ```
27
27
  You: Lita who is Luke's father?
28
- Lita: @Luke, I am your father!
28
+ Lita: Luke, I am your father!
29
29
  ```
30
30
 
31
31
  ## License
@@ -7,7 +7,7 @@ module Lita
7
7
 
8
8
  def father(response)
9
9
  child = response.matches[0][0]
10
- response.reply("@#{child}, I am your father!")
10
+ response.reply("#{child}, I am your father!")
11
11
  end
12
12
  end
13
13
 
data/lita-vader.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-vader"
3
- spec.version = "0.1.0"
3
+ spec.version = "0.1.1"
4
4
  spec.authors = ["Lee Jones", "Brian Pitts"]
5
5
  spec.description = %q{Lita handler to tell you who a user's father is}
6
6
  spec.summary = spec.description
@@ -9,7 +9,7 @@ describe Lita::Handlers::Vader, lita_handler: true do
9
9
  describe 'father' do
10
10
  it "explains who a user's father is" do
11
11
  send_command("who is Luke's father?")
12
- expect(replies.last).to eq("@Luke, I am your father!")
12
+ expect(replies.last).to eq("Luke, I am your father!")
13
13
  end
14
14
  end
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-vader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Jones