├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── apiary.apib ├── lib ├── liftmaster_myq.rb └── liftmaster_myq │ ├── device.rb │ ├── device │ ├── base.rb │ ├── garage_door.rb │ ├── gateway.rb │ └── light_switch.rb │ ├── system.rb │ └── version.rb └── liftmaster_myq.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /apiary.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/apiary.apib -------------------------------------------------------------------------------- /lib/liftmaster_myq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/device.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/device/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/device/base.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/device/garage_door.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/device/garage_door.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/device/gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/device/gateway.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/device/light_switch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/device/light_switch.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/lib/liftmaster_myq/system.rb -------------------------------------------------------------------------------- /lib/liftmaster_myq/version.rb: -------------------------------------------------------------------------------- 1 | module LiftmasterMyq 2 | VERSION = "0.0.2" 3 | end -------------------------------------------------------------------------------- /liftmaster_myq.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfeffed/liftmaster_myq/HEAD/liftmaster_myq.gemspec --------------------------------------------------------------------------------