hayesdavis-grackle 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +3 -2
- data/grackle.gemspec +1 -1
- data/lib/grackle/transport.rb +1 -1
- metadata +1 -1
data/README.txt
CHANGED
@@ -20,7 +20,7 @@ will potentially require, however, some modifications to your code that uses Gra
|
|
20
20
|
===Creating a Grackle::Client
|
21
21
|
|
22
22
|
require 'grackle'
|
23
|
-
client = Grackle::Client(:username=>'your_user',:password=>'yourpass')
|
23
|
+
client = Grackle::Client.new(:username=>'your_user',:password=>'yourpass')
|
24
24
|
|
25
25
|
See Grackle::Client for more information about valid arguments to the constructor including for custom headers and SSL.
|
26
26
|
|
@@ -102,7 +102,8 @@ You'll need the following gems to use all features of Grackle:
|
|
102
102
|
|
103
103
|
== INSTALL:
|
104
104
|
|
105
|
-
sudo gem
|
105
|
+
sudo gem sources -a http://gems.github.com
|
106
|
+
sudo gem install hayesdavis-grackle
|
106
107
|
|
107
108
|
== LICENSE:
|
108
109
|
|
data/grackle.gemspec
CHANGED
data/lib/grackle/transport.rb
CHANGED