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 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 install grackle
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{grackle}
5
- s.version = "0.0.5"
5
+ s.version = "0.0.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Hayes Davis"]
@@ -51,7 +51,7 @@ module Grackle
51
51
  request_standard(method,url,options)
52
52
  end
53
53
  rescue Timeout::Error
54
- raise "Timeout while #{req.method}ing #{url.to_s}"
54
+ raise "Timeout while #{method}ing #{url.to_s}"
55
55
  end
56
56
  end
57
57
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hayesdavis-grackle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hayes Davis