├── .bnsignore ├── Gemfile ├── Gemfile.lock ├── History.txt ├── README.org ├── Rakefile ├── bin └── firetower ├── example └── bot.rb ├── images └── BaldMountainLookout.jpg ├── lib ├── firetower.rb └── firetower │ ├── account.rb │ ├── accounts.rb │ ├── event.rb │ ├── firetower.conf.erb │ ├── plugins │ ├── core │ │ ├── campfire-logo-for-fluid.png │ │ ├── growl_plugin.rb │ │ ├── init_v1.rb │ │ ├── notifier_common.rb │ │ └── notify_plugin.rb │ └── yamfire │ │ ├── init_v1.rb │ │ └── yamfire.rb │ ├── room.rb │ ├── rooms.rb │ ├── server.rb │ └── session.rb ├── spec ├── firetower_spec.rb └── spec_helper.rb └── version.txt /.bnsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/.bnsignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/History.txt -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/README.org -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/firetower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/bin/firetower -------------------------------------------------------------------------------- /example/bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/example/bot.rb -------------------------------------------------------------------------------- /images/BaldMountainLookout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/images/BaldMountainLookout.jpg -------------------------------------------------------------------------------- /lib/firetower.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower.rb -------------------------------------------------------------------------------- /lib/firetower/account.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/account.rb -------------------------------------------------------------------------------- /lib/firetower/accounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/accounts.rb -------------------------------------------------------------------------------- /lib/firetower/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/event.rb -------------------------------------------------------------------------------- /lib/firetower/firetower.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/firetower.conf.erb -------------------------------------------------------------------------------- /lib/firetower/plugins/core/campfire-logo-for-fluid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/core/campfire-logo-for-fluid.png -------------------------------------------------------------------------------- /lib/firetower/plugins/core/growl_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/core/growl_plugin.rb -------------------------------------------------------------------------------- /lib/firetower/plugins/core/init_v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/core/init_v1.rb -------------------------------------------------------------------------------- /lib/firetower/plugins/core/notifier_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/core/notifier_common.rb -------------------------------------------------------------------------------- /lib/firetower/plugins/core/notify_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/core/notify_plugin.rb -------------------------------------------------------------------------------- /lib/firetower/plugins/yamfire/init_v1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/yamfire/init_v1.rb -------------------------------------------------------------------------------- /lib/firetower/plugins/yamfire/yamfire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/plugins/yamfire/yamfire.rb -------------------------------------------------------------------------------- /lib/firetower/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/room.rb -------------------------------------------------------------------------------- /lib/firetower/rooms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/rooms.rb -------------------------------------------------------------------------------- /lib/firetower/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/server.rb -------------------------------------------------------------------------------- /lib/firetower/session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/lib/firetower/session.rb -------------------------------------------------------------------------------- /spec/firetower_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/spec/firetower_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avdi/firetower/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.1.1 2 | --------------------------------------------------------------------------------