public
Description: Trac to Lighthouse ticket importer.
Homepage:
Clone URL: git://github.com/shayarnett/trachouse.git
trachouse / README
100644 34 lines (21 sloc) 0.718 kb
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
Trac to Lighthouse ticket importer
 
Original Author: Shay Arnett <shayarnett@gmail.com>
 
Contributions by :
    Maxim Chernyak <max@bitsonnet.com>
    João Abecasis <joao@abecasis.name>
    Gaspard Bucher <http://github.com/gaspard>
 
 
NOTES
-----
 
You'll need to get lighthouse.rb from
http://ar-code.svn.engineyard.com/lighthouse-api/lib
 
Enter Lighthouse and Trac configuration data in the ###marked### sections.
 
Usage:
 
    require 'trachouse'
 
    t = Ticket.new
 
    # grabs all tickets from trac
    tickets = t.populate_tickets
    # import tickets to lighthouse
    t.import_tickets(tickets)
    # profit
 
You may want to inspect tickets and import a subset for testing, before
bulk processing all tickets.