cinch-github 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010 Arthur Chiu
1
+ Copyright (c) 2011 Arthur Chiu
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
17
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
18
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
19
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -47,7 +47,7 @@ It's simple. follow the guide on cinch or do something like:
47
47
 
48
48
  # mybot.rb
49
49
  require 'cinch'
50
- require 'cinch-github'
50
+ require 'cinch/plugins/github'
51
51
 
52
52
  Cinch::Plugins::Github::Issue.configure do |c|
53
53
  c.user = 'achiu' # your github username
@@ -78,4 +78,4 @@ And there you go!
78
78
  TODO
79
79
  -----
80
80
 
81
- * finish the other plugins for rest of Github API
81
+ * finish the other plugins for rest of Github API
@@ -17,7 +17,7 @@ module Cinch
17
17
  end
18
18
  end
19
19
 
20
- match %r{help github issue}, :method => :display_help # !issue help gitub issue
20
+ match "help github issue", :method => :display_help # !issue help github issue
21
21
  match %r{issue state (open|closed) (.+)}, :method => :get_ticket # !issue state closed bugs
22
22
  match %r{issue find (.+)}, :method => :get_ticket # !issue find sinatra
23
23
  match %r{issue link (.+)}, :method => :reply_link # !issue link 35
@@ -1,7 +1,7 @@
1
1
  module Cinch
2
2
  module Plugins
3
3
  module Github
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Arthur Chiu