agile-isaac 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/isaac.gemspec +2 -2
  2. data/lib/isaac.rb +4 -2
  3. metadata +2 -2
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "isaac"
3
- s.version = "0.0.5"
4
- s.date = "2008-12-18"
3
+ s.version = "0.0.6"
4
+ s.date = "2008-12-19"
5
5
  s.summary = "The smallish DSL for writing IRC bots"
6
6
  s.email = "mike@cryingwhilecoding.com"
7
7
  s.homepage = "http://github.com/agile/isaac"
@@ -4,6 +4,7 @@ $:.unshift File.dirname(__FILE__)
4
4
  require 'isaac/config'
5
5
 
6
6
  module Isaac
7
+ VERSION="0.0.5"
7
8
 
8
9
  # Returns the current instance of Isaac::Application
9
10
  def self.app
@@ -40,7 +41,8 @@ module Isaac
40
41
 
41
42
  # This is plain stupid. Might be useful for logging or something later on.
42
43
  def start #:nodoc:
43
- logger.info " ==== Starting Isaac ==== "
44
+
45
+ logger.info " ==== Starting Isaac v#{Isaac::VERSION} ==== "
44
46
  connect
45
47
  logger.info " ==== Ending Isaac ==== "
46
48
  end
@@ -322,7 +324,7 @@ module Isaac
322
324
  end
323
325
 
324
326
  # Assign methods to current Isaac instance
325
- %w(config helpers on).each do |method|
327
+ %w(config helpers on logger).each do |method|
326
328
  eval(<<-EOF)
327
329
  def #{method}(*args, &block)
328
330
  Isaac.app.#{method}(*args, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agile-isaac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harry Vangberg
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2008-12-18 00:00:00 -08:00
13
+ date: 2008-12-19 00:00:00 -08:00
14
14
  default_executable:
15
15
  dependencies: []
16
16