ajout de la gem sendinblue
This commit is contained in:
parent
27b8797296
commit
d7fff61d5d
3 changed files with 11 additions and 0 deletions
1
Gemfile
1
Gemfile
|
@ -69,6 +69,7 @@ gem 'rgeo-geojson'
|
|||
gem 'sanitize-url'
|
||||
gem 'sassc-rails' # Use SCSS for stylesheets
|
||||
gem 'sentry-raven'
|
||||
gem 'sib-api-v3-sdk'
|
||||
gem 'skylight'
|
||||
gem 'smart_listing'
|
||||
gem 'spreadsheet_architect'
|
||||
|
|
|
@ -348,6 +348,7 @@ GEM
|
|||
rails-dom-testing (>= 1, < 3)
|
||||
railties (>= 4.2.0)
|
||||
thor (>= 0.14, < 2.0)
|
||||
json (2.3.1)
|
||||
json-jwt (1.13.0)
|
||||
activesupport (>= 4.2)
|
||||
aes_key_wrap
|
||||
|
@ -658,6 +659,9 @@ GEM
|
|||
shellany (0.0.1)
|
||||
shoulda-matchers (4.4.1)
|
||||
activesupport (>= 4.2.0)
|
||||
sib-api-v3-sdk (7.0.0)
|
||||
json (~> 2.1, >= 2.1.0)
|
||||
typhoeus (~> 1.0, >= 1.0.1)
|
||||
simple_xlsx_reader (1.0.4)
|
||||
nokogiri
|
||||
rubyzip
|
||||
|
@ -860,6 +864,7 @@ DEPENDENCIES
|
|||
scss_lint
|
||||
sentry-raven
|
||||
shoulda-matchers
|
||||
sib-api-v3-sdk
|
||||
simple_xlsx_reader
|
||||
skylight
|
||||
smart_listing
|
||||
|
|
5
config/initializers/sendinblue.rb
Normal file
5
config/initializers/sendinblue.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
require 'sib-api-v3-sdk'
|
||||
|
||||
SibApiV3Sdk.configure do |config|
|
||||
config.api_key['api-key'] = ENV.fetch('SENDINBLUE_API_V3_KEY', '')
|
||||
end
|
Loading…
Reference in a new issue