├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── autotest └── discover.rb ├── lib ├── zdevice.rb └── zdevice │ └── version.rb ├── spec ├── relay_spec.rb └── zdevice_spec.rb └── zdevice.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/Rakefile -------------------------------------------------------------------------------- /autotest/discover.rb: -------------------------------------------------------------------------------- 1 | Autotest.add_discovery { 'rspec2' } 2 | -------------------------------------------------------------------------------- /lib/zdevice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/lib/zdevice.rb -------------------------------------------------------------------------------- /lib/zdevice/version.rb: -------------------------------------------------------------------------------- 1 | module Zdevice 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/relay_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/spec/relay_spec.rb -------------------------------------------------------------------------------- /spec/zdevice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/spec/zdevice_spec.rb -------------------------------------------------------------------------------- /zdevice.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrigorik/zdevice/HEAD/zdevice.gemspec --------------------------------------------------------------------------------