Skip to content

Commit

Permalink
Republish gem which was empty in first build. Add require 'rubygems'
Browse files Browse the repository at this point in the history
before requiring mailrelay.
  • Loading branch information
Fernando Morgenstern committed Jun 25, 2012
1 parent 38bcb16 commit 9720091
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -14,6 +14,7 @@ You can check the [API documentation][1] to view a list of all available functio

If you want to create a subscriber, simply use:

require 'rubygems'
require 'mailrelay'

# Set your account hostname and api key here
Expand Down
1 change: 1 addition & 0 deletions examples/add_and_send_campaign.rb
@@ -1,6 +1,7 @@
# Only required if you didn't installed this gem
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'rubygems'
require 'mailrelay'

# Set your hostname and api key here
Expand Down
1 change: 1 addition & 0 deletions examples/get_campaigns.rb
@@ -1,6 +1,7 @@
# Only required if you didn't installed this gem
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'rubygems'
require 'mailrelay'

# Set your hostname and api key here
Expand Down
1 change: 1 addition & 0 deletions examples/get_subscriber.rb
@@ -1,6 +1,7 @@
# Only required if you didn't installed this gem
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))

require 'rubygems'
require 'mailrelay'

# Set your hostname and api key here
Expand Down
4 changes: 2 additions & 2 deletions mailrelay.gemspec
@@ -1,12 +1,12 @@
Gem::Specification.new do |s|
s.name = "mailrelay"
s.version = "0.1"
s.version = "0.1.1"
s.authors = ["Fernando Morgenstern"]
s.email = ["fernando@mailrelay.com"]
s.homepage = "http://mailrelay.com/"
s.summary = %q{Mailrelay API in Ruby}
s.description = %q{A simple wrapper for Mailrelay's API}
s.require_paths = ["lib"]
s.files = ["lib/mailrelay.rb", "lib/mailrelay/api.rb"]

s.add_dependency('active_support')
s.add_dependency('httparty')
Expand Down

0 comments on commit 9720091

Please sign in to comment.