public
Rubygem
Description: The official Ruby Library for interacting with the Lighthouse API
Homepage: http://lighthouseapp.com/api
Clone URL: git://github.com/Caged/lighthouse-api.git
Add support for Changesets
kneath (author)
Tue May 27 22:11:59 -0700 2008
commit  6b1b195db5199eb3bef44e30324b6887f7b78383
tree    5b5e5524b26cf646f442e7cfd7042e33e9e6c891
parent  f27453d13077093b533a34bd7bf373f0149db214
...
111
112
113
 
 
 
 
114
115
116
...
221
222
223
 
 
 
 
 
 
224
225
226
...
111
112
113
114
115
116
117
118
119
120
...
225
226
227
228
229
230
231
232
233
234
235
236
0
@@ -111,6 +111,10 @@ module Lighthouse
0
     def bins(options = {})
0
       Bin.find(:all, :params => options.update(:project_id => id))
0
     end
0
+
0
+ def changesets(options = {})
0
+ Changeset.find(:all, :params => options.update(:project_id => id))
0
+ end
0
   end
0
 
0
   class User < Base
0
@@ -221,6 +225,12 @@ module Lighthouse
0
   class Bin < Base
0
     site_format << '/projects/:project_id'
0
   end
0
+
0
+ class Changeset < Base
0
+ site_format << '/projects/:project_id'
0
+ end
0
+
0
+ class Change < Array; end
0
 end
0
 
0
 module ActiveResource

Comments

    No one has commented yet.