sendgrid_api 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require "rake/gempackagetask"
2
2
  require "spec/rake/spectask"
3
3
  require "bundler"
4
4
 
5
- require "lib/sendgrid/version"
5
+ require "lib/sendgrid_api/version"
6
6
 
7
7
  desc "Default: run specs"
8
8
  task :default => :spec
@@ -1,9 +1,9 @@
1
1
  require "net/http"
2
2
  require "json"
3
3
 
4
- require "sendgrid/client"
5
- require "sendgrid/response"
6
- require "sendgrid/subuser"
4
+ require "sendgrid_api/client"
5
+ require "sendgrid_api/response"
6
+ require "sendgrid_api/subuser"
7
7
 
8
8
  module Sendgrid
9
9
  class << self
File without changes
@@ -1,3 +1,3 @@
1
1
  module Sendgrid
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sendgrid_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ninja@engineyard.com
@@ -32,11 +32,11 @@ extra_rdoc_files: []
32
32
 
33
33
  files:
34
34
  - Rakefile
35
- - lib/sendgrid.rb
36
- - lib/sendgrid/subuser.rb
37
- - lib/sendgrid/version.rb
38
- - lib/sendgrid/response.rb
39
- - lib/sendgrid/client.rb
35
+ - lib/sendgrid_api.rb
36
+ - lib/sendgrid_api/subuser.rb
37
+ - lib/sendgrid_api/version.rb
38
+ - lib/sendgrid_api/response.rb
39
+ - lib/sendgrid_api/client.rb
40
40
  has_rdoc: true
41
41
  homepage: http://github.com/engineyard/sendgrid_api
42
42
  licenses: []