dragoon 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -12,14 +12,17 @@ Dependencies
12
12
 
13
13
  P.S. You can still run the program even without growl, you'll only see the keywords being highlighted and there won't be any growl notificaiton, that's all.
14
14
 
15
+ Installation
16
+ -----------
17
+
18
+ gem install dragoon
19
+
15
20
  Usage
16
21
  -----
17
22
 
18
- gem install dragoon
19
-
20
- dragoon
23
+ dragoon
21
24
 
22
- Once you run dragoon, A default config file would be created under your home directory called .dragoon if it doesnt exist. You will have to edit it accordingly. Once the file exists, the program will automatically load the config file on startup.
25
+ The first time you run dragoon, A default config file would be created under your home directory called .dragoon if it doesnt exist. You will have to edit it accordingly. Once the file exists, the program will automatically load the config file on startup.
23
26
 
24
27
  If you have growl support, make sure it's turned on
25
28
 
@@ -20,4 +20,5 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.add_development_dependency "rspec"
22
22
  s.add_dependency "term-ansicolor"
23
+ s.add_dependency "json"
23
24
  end
@@ -1,9 +1,9 @@
1
1
  require 'socket'
2
2
  require 'ostruct'
3
3
  require 'forwardable'
4
- require 'json'
5
4
 
6
5
  require 'term/ansicolor'
6
+ require 'json'
7
7
 
8
8
  require 'dragoon/commands'
9
9
  require 'dragoon/event'
@@ -1,3 +1,3 @@
1
1
  module Dragoon
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dragoon
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Reginald Tan
@@ -45,6 +45,20 @@ dependencies:
45
45
  version: "0"
46
46
  type: :runtime
47
47
  version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: json
50
+ prerelease: false
51
+ requirement: &id003 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ type: :runtime
61
+ version_requirements: *id003
48
62
  description: "An IRC bot that alerts you whenever certain keywords appear in your favorite channels "
49
63
  email:
50
64
  - redge.tan@gmail.com