Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lockstep/dragon.rb
A ruby DSL to customize Dragon Dictate for OSX
https://github.com/lockstep/dragon.rb
Last synced: 26 days ago
JSON representation
A ruby DSL to customize Dragon Dictate for OSX
- Host: GitHub
- URL: https://github.com/lockstep/dragon.rb
- Owner: lockstep
- License: mit
- Created: 2015-02-02T03:29:46.000Z (almost 10 years ago)
- Default Branch: development
- Last Pushed: 2015-02-16T07:58:51.000Z (almost 10 years ago)
- Last Synced: 2023-08-05T16:56:05.744Z (over 1 year ago)
- Language: Ruby
- Size: 402 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dragon.rb
A ruby DSL for customizing Dragon Dictate on OSX. Introductory post
[here](http://blog.paulrugelhiatt.com/dragonrb/ruby/2015/02/16/introducing-dragonrb-an-open-source-ruby-dsl-for-voice-recognition-software.html).## Setup
Clone the repo and run `bundle`. Copy the example database config:cp db/database.example.yml db/database.yml
and configure as needed:
```yml
# db/database.ymltest:
adapter: sqlite3
database: 'db/test.sqlite'
production:
adapter: sqlite3
database: '/Users/USERNAME/Library/Application Support/Dragon/Commands/USERNAME.ddictatecommands'
```Run tests with `rspec spec`. Sync to Dragon with `rake`.
## WARNING
This is currently an experimental project under active development.
Collaborators are welcome, but please do not consider the library ready for
carefree use. If used incorrectly, this has the potential to permanently
corrupt your Dragon Dictate command library (and any related data).