├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── spurious ├── lib ├── spurious.rb └── spurious │ ├── app.rb │ ├── command │ ├── ports.rb │ └── state.rb │ ├── config.rb │ └── version.rb ├── spec ├── app_spec.rb ├── config_spec.rb └── helper.rb ├── spurious.gemspec └── tools └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /bin/spurious: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/bin/spurious -------------------------------------------------------------------------------- /lib/spurious.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/lib/spurious.rb -------------------------------------------------------------------------------- /lib/spurious/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/lib/spurious/app.rb -------------------------------------------------------------------------------- /lib/spurious/command/ports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/lib/spurious/command/ports.rb -------------------------------------------------------------------------------- /lib/spurious/command/state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/lib/spurious/command/state.rb -------------------------------------------------------------------------------- /lib/spurious/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/lib/spurious/config.rb -------------------------------------------------------------------------------- /lib/spurious/version.rb: -------------------------------------------------------------------------------- 1 | module Spurious 2 | VERSION = "0.4.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/spec/app_spec.rb -------------------------------------------------------------------------------- /spec/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/spec/config_spec.rb -------------------------------------------------------------------------------- /spec/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/spec/helper.rb -------------------------------------------------------------------------------- /spurious.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/spurious.gemspec -------------------------------------------------------------------------------- /tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spurious-io/spurious/HEAD/tools/install.sh --------------------------------------------------------------------------------