├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.markdown ├── Rakefile ├── VERSION ├── examples ├── campfire.rb └── echo.rb ├── lib ├── siri-says.rb └── siri_says.rb └── siri_says.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /examples/campfire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/examples/campfire.rb -------------------------------------------------------------------------------- /examples/echo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/examples/echo.rb -------------------------------------------------------------------------------- /lib/siri-says.rb: -------------------------------------------------------------------------------- 1 | require "siri_says" 2 | -------------------------------------------------------------------------------- /lib/siri_says.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/lib/siri_says.rb -------------------------------------------------------------------------------- /siri_says.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tysonmote/siri_says/HEAD/siri_says.gemspec --------------------------------------------------------------------------------