├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── README.rdoc ├── Rakefile ├── lib ├── send_grid.rb ├── send_grid │ ├── api_header.rb │ ├── config.rb │ ├── mail_interceptor.rb │ └── version.rb └── sendgrid-rails.rb ├── send_grid.gemspec └── spec ├── api_header_spec.rb ├── fixtures └── mailers │ └── mailer.rb ├── mailer_spec.rb ├── spec_helper.rb └── version_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | .rvmrc 4 | Gemfile.lock 5 | pkg/* 6 | nbproject/ 7 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --format nested 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/send_grid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/lib/send_grid.rb -------------------------------------------------------------------------------- /lib/send_grid/api_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/lib/send_grid/api_header.rb -------------------------------------------------------------------------------- /lib/send_grid/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/lib/send_grid/config.rb -------------------------------------------------------------------------------- /lib/send_grid/mail_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/lib/send_grid/mail_interceptor.rb -------------------------------------------------------------------------------- /lib/send_grid/version.rb: -------------------------------------------------------------------------------- 1 | module SendGrid 2 | VERSION = "3.1.0" 3 | end 4 | 5 | -------------------------------------------------------------------------------- /lib/sendgrid-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/lib/sendgrid-rails.rb -------------------------------------------------------------------------------- /send_grid.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/send_grid.gemspec -------------------------------------------------------------------------------- /spec/api_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/spec/api_header_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/mailers/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/spec/fixtures/mailers/mailer.rb -------------------------------------------------------------------------------- /spec/mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/spec/mailer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paveltyk/sendgrid-rails/HEAD/spec/version_spec.rb --------------------------------------------------------------------------------