Using RSpec for Testing, and Guard for test automation.
Clone repo, Install any deps, then run:
guard
From the base directory to watch for file changes / automate tests.
Also using Faraday to construct the email and post.
##
## THIS IS HOW I WANNA USE IT.
# sg = sendgrid::Client.new("Myuser", "Mykey")
# m = sendgrid::Mail.new()
# m.to("[email protected]")
# sg.send(m)
## OR
# m = sendgrid::Mail.new(:to => "[email protected]", :from => "[email protected]")
# sg.send(m)
#
##
##
TODO: Write a gem description
Add this line to your application's Gemfile:
gem 'sendgrid-ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sendgrid-ruby
TODO: Write usage instructions here
- Fork it ( https://github.com/[my-github-username]/sendgrid-ruby/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request