- Add:
Alexa::Response#partial_path
to override only a path to the templates in a response.
-
Remove:
Alexa::IntentHandler::Base#show_device_address_permission_consent_card!
andAlexa::IntentHandler::Base#show_device_address_permission_consent_card?
- default repsonses will no longer render device address permission cards.
-
Add:
- Abilty to render a custom template in a response with
Alexa::Response#with(template: )
. See: #9
- Abilty to render a custom template in a response with
-
Changes:
- Default intent handler view files are no more
speech.ssml.erb
anddisplay.text.erb
. They are now renamed todefault.ssml.erb
anddefault.text.erb
. See: #10
- Default intent handler view files are no more
-
Remove:
Alexa::Request#language_code
andAlexa::Request#country_code
.- Move them to
Alexa::Context
.
- Move them to
-
Add:
Alexa::Context#language_code
andAlexa::Context#country_code
.
- Add:
Alexa::Request#language_code
andAlexa::Request#country_code
.
- Fixes:
- Issue: #6:
Alexa::Request#locale
was modifying the locale string instead of returning the string from request as is. This has now been fixed in https://github.com/tsrivishnu/alexa-rails/commit/18f3c3878b9923a8df229bef34b1d2a9319c0dc0.
- Issue: #6:
- Add configuration option to set default card title
Change rails dependancy to >= 5.0