├── .document ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── lib ├── sendgrid.rb └── sendgrid │ ├── railtie.rb │ └── version.rb ├── sendgrid.gemspec └── test ├── sendgrid_test.rb └── test_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | .DS_Store 3 | coverage 4 | rdoc 5 | pkg 6 | .idea -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.4 -------------------------------------------------------------------------------- /lib/sendgrid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/lib/sendgrid.rb -------------------------------------------------------------------------------- /lib/sendgrid/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/lib/sendgrid/railtie.rb -------------------------------------------------------------------------------- /lib/sendgrid/version.rb: -------------------------------------------------------------------------------- 1 | module SendGrid #:nodoc: 2 | VERSION = "2.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /sendgrid.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/sendgrid.gemspec -------------------------------------------------------------------------------- /test/sendgrid_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/test/sendgrid_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenb/sendgrid/HEAD/test/test_helper.rb --------------------------------------------------------------------------------