We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

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
support the addressable gem for uris with underscores in the domain
technoweenie (author)
Fri Oct 17 13:55:40 -0700 2008
commit  a1fa0cb925179e11d033c49159bc9fdfbdcf25e1
tree    334bd9cbd5040562c8b27ada0a83ed1eb560513c
parent  a48d94eb442a3e2342b6e2d115faab07013d53c0
...
1
 
 
 
 
 
 
 
 
 
 
 
2
3
4
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
0
@@ -1,4 +1,15 @@
0
 require 'rubygems'
0
+
0
+begin
0
+ require 'addressable/uri'
0
+ puts "Replacing URI with Addressable::URI"
0
+ URI = Addressable::URI
0
+rescue LoadError
0
+ puts "Install the Addressable gem to support accounts with subdomains."
0
+ puts "# sudo gem install addressable"
0
+ puts
0
+end
0
+
0
 require 'activesupport'
0
 require 'activeresource'
0
 

Comments

    No one has commented yet.