summaryrefslogtreecommitdiff
path: root/launch_here.rb
blob: 8f9243ed646a4492ac42b86c78395ae4f874e9d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/ruby
#
# Load rbot from this directory. (No need to install it with setup.rb)
#

SCM_DIR = File.expand_path File.dirname(__FILE__)
puts "Running from #{SCM_DIR}"

$:.unshift File.join(SCM_DIR, 'lib')

$version = '0.9.13-git'

pwd = Dir.pwd
begin
  Dir.chdir SCM_DIR

  if File.exists? '.git'
    begin
      git_out = `git status`
      git_out.match(/^# On branch (.*)\n/)
      if $1 # git 1.5.x
        branch = $1.dup || "unknown"
        changed = git_out.match(/^# Change(.*)\n/)
        rev = "revision "
        git_out = `git log -1 --pretty=format:"%h%n%b%n%ct"`.split("\n")
        rev << git_out.first
        $version_timestamp = git_out.last.to_i
        rev << "(svn #{$1})" if git_out[1].match(/^git-svn-id: \S+@(\d+)/)
        rev << ", local changes" if changed
      else # older gits
        git_out = `git branch`
        git_out.match(/^\* (.*)\n/)
        branch = $1.dup rescue "unknown"
        rev = "revision " + `git rev-parse HEAD`[0,6]
      end
    rescue => e
      puts e.inspect
      branch = "unknown branch"
      rev = "unknown revision"
    end
    $version << " (#{branch} branch, #{rev})"
  elsif File.directory? File.join(up, '.svn')
    rev = " (unknown revision)"
    begin
      svn_out = `svn info`
      rev = " (revision #{$1}" if svn_out =~ /Last Changed Rev: (\d+)/
      svn_st = `svn st #{up}`
      rev << ", local changes" if svn_st =~ /^[MDA] /
      rev << ")"
    rescue => e
      puts e.inspect
    end
    $version += rev
  end
ensure
  Dir.chdir pwd
end

module Irc
class Bot
  module Config
    @@datadir = File.join SCM_DIR, 'data/rbot'
    @@coredir = File.join SCM_DIR, 'lib/rbot/core'
  end
end
end

load File.join(SCM_DIR, 'bin/rbot')