cinch-rfc 0.0.1 → 0.0.2

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: b7db9892447c63157e67e829e220f94e24ec2d76
4
- data.tar.gz: be6fb560c891e2c7162d67a8986bde424bc30765
3
+ metadata.gz: fcdc4c88808fa535dd079b9bddd121f168eaf52f
4
+ data.tar.gz: b0add895d208c895179620476dbaab6686eabc5a
5
5
  SHA512:
6
- metadata.gz: 7e4738056b227bb1a7360dc8c93f422572ca8f879cca0de486da3854da6b0fd81ce9eeb14350a9c00ab6633808ca29567277b64a8afa42cac02931790495f077
7
- data.tar.gz: 650eb4ffb909e747c8a006d2fe9e3f71dae6606b3fcc70d779ed0c06720e97923a831c128bcf23a868072fc31508f762b1b7094fe4e9f3f31b06b7700629aa4e
6
+ metadata.gz: d50000ce739ecd586840d905b57385cba94556f7ce65150df2b9847e1ba29c97559d02e251862403fdffa3eefd96338265d9b5952c3f391cbec0ad778c488375
7
+ data.tar.gz: 96942684517e3724cd18b9831585606a14ba69e8a71a98c472781483f9d138f3090dab541798ac4a5115ac932895f050ea70e1e255809ae1b67b014d581cc7d3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cinch-rfc (0.0.1)
4
+ cinch-rfc (0.0.2)
5
5
  cinch (~> 2.0)
6
6
  curb
7
7
  nokogiri
@@ -1,7 +1,7 @@
1
1
  module Cinch
2
2
  module Plugins
3
3
  class RFC
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
6
6
  end
7
7
  end
@@ -11,7 +11,7 @@ module Cinch
11
11
  match /RFC ?(\d+)/i, method: :rfc_link, use_prefix: false
12
12
 
13
13
  def rfc_link(m, rfc)
14
- rfc_url = "http://www.faqs.org/rfcs/rfc#{rfc}.html"
14
+ rfc_url = "http://tools.ietf.org/rfc/rfc#{rfc}.txt"
15
15
  rfc_name = rfc_name_from_url(rfc_url)
16
16
  m.reply "RFC #{rfc}: #{rfc_name} (#{rfc_url})"
17
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cinch-rfc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - JP Hastings-Spital