Skip to content

Commit

Permalink
Merge branch 'aws-dynamodb'
Browse files Browse the repository at this point in the history
  • Loading branch information
OverloadUT committed Jan 10, 2016
2 parents c800838 + a0815eb commit 65d4af9
Show file tree
Hide file tree
Showing 28 changed files with 2,121 additions and 748 deletions.
12 changes: 12 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ module.exports = function(grunt) {
command: 'deploy.bat'
}
},
jsdoc : {
dist : {
src: ['*.js', 'lib/**/*.js', 'test/*.js'],
options: {
destination: 'jsdoc',
template : "node_modules/ink-docstrap/template",
configure : "node_modules/ink-docstrap/template/jsdoc.conf.json",
readme: "README.md"
}
}
}
});

// Coveralls support
Expand All @@ -68,6 +79,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.loadNpmTasks('grunt-mocha-istanbul');
grunt.loadNpmTasks('grunt-jsdoc');

// Default task(s).
grunt.registerTask('default', ['mocha_istanbul:coverage']);
Expand Down
50 changes: 50 additions & 0 deletions ask_configuration/SHOWNAME.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
Legends of Tomorrow
Game of Thrones
Sherlock
Shadowhunters: The Mortal Instruments
Jessica Jones
The Walking Dead
Making a Murderer
Arrow
Fargo
The Flash
Downton Abbey
American Horror Story
Homeland
Doctor Who
The Big Bang Theory
The Man in the High Castle
Supernatural
Grey's Anatomy
Mr. Robot
Breaking Bad
The 100
Once Upon a Time
The Expanse
Luther
Vikings
Gotham
The Vampire Diaries
Narcos
Daredevil
Orange Is the New Black
Sons of Anarchy
Shameless
NCIS
Ash vs Evil Dead
House of Cards
Criminal Minds
Pretty Little Liars
Friends
Modern Family
Dexter
Person of Interest
Fuller House
Suits
Into the Badlands
Supergirl
How I Met Your Mother
Colony
The X-Files
Outlander
The Twilight Zone
36 changes: 29 additions & 7 deletions intent-schema.json → ask_configuration/intent-schema.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,45 @@
{
"intents": [
{
"intent": "OnDeckIntent",
"intent": "SetupIntent",
"slots": []
},
{
"intent": "ContinueSetupIntent",
"slots": []
},
{
"intent": "BeginSetupIntent",
"slots": []
},
{
"intent": "AuthorizeMeIntent",
"slots": []
},
{
"intent": "YesIntent",
"intent": "WhatsNewIntent",
"slots": []
},
{
"intent": "NoIntent",
"intent": "ChangeSettingsIntent",
"slots": []
},
{
"intent": "OnDeckIntent",
"slots": []
},
{
"intent": "AMAZON.YesIntent"
},
{
"intent": "AMAZON.NoIntent"
},
{
"intent": "StartShowIntent",
"slots": [
{
"name": "showName",
"type": "LITERAL"
"type": "SHOWNAME"
}
]
},
Expand All @@ -26,7 +48,7 @@
"slots": [
{
"name": "showName",
"type": "LITERAL"
"type": "SHOWNAME"
}
]
},
Expand All @@ -35,7 +57,7 @@
"slots": [
{
"name": "showName",
"type": "LITERAL"
"type": "SHOWNAME"
}
]
},
Expand All @@ -44,7 +66,7 @@
"slots": [
{
"name": "showName",
"type": "LITERAL"
"type": "SHOWNAME"
},
{
"name": "episodeNumber",
Expand Down
37 changes: 37 additions & 0 deletions ask_configuration/sample-utterances.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
BeginSetupIntent Begin setup
BeginSetupIntent Start setup
BeginSetupIntent Let's get started
ContinueSetupIntent Continue setup
AuthorizeMeIntent Authorize me
AuthorizeMeIntent Sign in to Plex
AuthorizeMeIntent Link my account
WhatsNewIntent Release notes
OnDeckIntent What's new
OnDeckIntent What is new
OnDeckIntent What is on deck
OnDeckIntent What's on deck
StartShowIntent Put on {showName}
StartShowIntent Put on the next episode of {showName}
StartShowIntent Put on the next {showName}
StartShowIntent Play {showName}
StartShowIntent Play the next episode of {showName}
StartShowIntent Play the next {showName}
StartHighRatedEpisodeIntent Put on a good episode of {showName}
StartHighRatedEpisodeIntent Play a good episode of {showName}
StartHighRatedEpisodeIntent Put on {showName} and make it a good one
StartHighRatedEpisodeIntent Play {showName} and make it a good one
StartSpecificEpisodeIntent Play season {one|seasonNumber} episode {one|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play season {two|seasonNumber} episode {two|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play season {three|seasonNumber} episode {three|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play season {four|seasonNumber} episode {four|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play season {five|seasonNumber} episode {five|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play season {six|seasonNumber} episode {six|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {one oh five|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {two oh six|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {three oh seven|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {four oh eight|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {five oh nine|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {one|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {two|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {three|episodeNumber} of {showName}
StartSpecificEpisodeIntent Play episode {four|episodeNumber} of {showName}
2 changes: 2 additions & 0 deletions deploy.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
REM Requires AWS CLI installed: https://aws.amazon.com/cli/
REM Requires 7z installed, and 7z.exe added to your PATH
@echo off
rmdir dist\install /S /Q
mkdir dist\install
Expand Down
Loading

0 comments on commit 65d4af9

Please sign in to comment.