Changeset bf8d3dc80f6103fdd8e2a629880ab0470d516d70
- Timestamp:
- 08/09/08 22:23:58
(3 months ago)
- Author:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
- git-committer:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com> 1218306238 +0200
- git-parent:
[58459cf3ebcf3a7029fca4c3761dcb8fa23b95c3]
- git-author:
- Giuseppe Bilotta <giuseppe.bilotta@gmail.com> 1218306238 +0200
- Message:
Start working on 0.9.13
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc1f1768 |
rbf8d3dc |
|
| 7 | 7 | spec = Gem::Specification.new do |s| |
|---|
| 8 | 8 | s.name = 'rbot' |
|---|
| 9 | | s.version = '0.9.12' |
|---|
| | 9 | s.version = '0.9.13' |
|---|
| 10 | 10 | s.summary = <<-EOF |
|---|
| 11 | 11 | A modular ruby IRC bot. |
|---|
| r58459cf |
rbf8d3dc |
|
| 48 | 48 | require 'fileutils' |
|---|
| 49 | 49 | |
|---|
| 50 | | $version ||= '0.9.12' |
|---|
| | 50 | $version ||= '0.9.13-git' |
|---|
| 51 | 51 | $version_timestamp ||= 0 |
|---|
| 52 | 52 | $opts = Hash.new |
|---|
| r58459cf |
rbf8d3dc |
|
| 9 | 9 | $:.unshift File.join(SCM_DIR, 'lib') |
|---|
| 10 | 10 | |
|---|
| 11 | | $version = '0.9.12' |
|---|
| | 11 | $version = '0.9.13-git' |
|---|
| 12 | 12 | |
|---|
| 13 | 13 | pwd = Dir.pwd |
|---|