├── .gitignore ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── rails.png │ ├── javascripts │ │ ├── ajax_controller.js.coffee │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ ├── dashboard.js.coffee │ │ ├── file.js.coffee │ │ ├── jquery.cookie.js │ │ ├── jquery.md5.js │ │ ├── node.js.coffee │ │ └── ws_node.js.coffee │ └── stylesheets │ │ ├── ajax_controller.css.scss │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── dashboard.css.scss │ │ ├── file.css.scss │ │ ├── node.css.scss │ │ ├── wice_grid.css.scss │ │ └── ws_node.css.scss ├── controllers │ ├── ajax_controller.rb │ ├── application_controller.rb │ ├── dashboard_controller.rb │ ├── file_controller.rb │ ├── node_controller.rb │ └── ws_controller.rb ├── helpers │ ├── ajax_controller_helper.rb │ ├── application_helper.rb │ ├── dashboard_helper.rb │ ├── file_helper.rb │ ├── node_helper.rb │ └── ws_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── block.rb │ ├── hive_file.rb │ └── node.rb └── views │ ├── dashboard │ └── show.html.erb │ ├── file │ ├── create.html.erb │ ├── detail.html.erb │ ├── fetch.html.erb │ └── index.html.erb │ ├── layouts │ └── application.html.erb │ └── node │ ├── botjs.js.erb │ ├── botjs.js.erb.bak │ ├── create.html.erb │ ├── heartbeat.html.erb │ ├── index.html.erb │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── deploy.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── events.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── rails_config.rb │ ├── redis.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── wice_grid_config.rb │ └── wrap_parameters.rb ├── locales │ ├── en.bootstrap.yml │ ├── en.yml │ └── wice_grid.yml ├── routes.rb ├── settings.yml └── settings │ ├── development.yml │ ├── production.yml │ └── test.yml ├── db ├── migrate │ ├── 20130723173421_create_nodes.rb │ └── 20130725023800_create_hive_files.rb ├── schema.rb └── seeds.rb ├── doc ├── nginx.conf └── proxysite.conf ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── node.html └── robots.txt ├── script └── rails └── vendor ├── assets ├── javascripts │ └── .gitkeep └── stylesheets │ └── .gitkeep └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/.gitignore -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/ajax_controller.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/ajax_controller.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/dashboard.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/dashboard.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/file.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/file.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/jquery.cookie.js -------------------------------------------------------------------------------- /app/assets/javascripts/jquery.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/jquery.md5.js -------------------------------------------------------------------------------- /app/assets/javascripts/node.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/node.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/ws_node.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/javascripts/ws_node.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/ajax_controller.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/ajax_controller.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/dashboard.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/dashboard.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/file.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/file.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/node.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/node.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/wice_grid.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/wice_grid.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/ws_node.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/assets/stylesheets/ws_node.css.scss -------------------------------------------------------------------------------- /app/controllers/ajax_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/ajax_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/file_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/file_controller.rb -------------------------------------------------------------------------------- /app/controllers/node_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/node_controller.rb -------------------------------------------------------------------------------- /app/controllers/ws_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/controllers/ws_controller.rb -------------------------------------------------------------------------------- /app/helpers/ajax_controller_helper.rb: -------------------------------------------------------------------------------- 1 | module AjaxControllerHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/dashboard_helper.rb: -------------------------------------------------------------------------------- 1 | module DashboardHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/file_helper.rb: -------------------------------------------------------------------------------- 1 | module FileHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/node_helper.rb: -------------------------------------------------------------------------------- 1 | module NodeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/ws_helper.rb: -------------------------------------------------------------------------------- 1 | module WsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/models/block.rb -------------------------------------------------------------------------------- /app/models/hive_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/models/hive_file.rb -------------------------------------------------------------------------------- /app/models/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/models/node.rb -------------------------------------------------------------------------------- /app/views/dashboard/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/dashboard/show.html.erb -------------------------------------------------------------------------------- /app/views/file/create.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/file/detail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/file/detail.html.erb -------------------------------------------------------------------------------- /app/views/file/fetch.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/file/fetch.html.erb -------------------------------------------------------------------------------- /app/views/file/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/file/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/node/botjs.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/botjs.js.erb -------------------------------------------------------------------------------- /app/views/node/botjs.js.erb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/botjs.js.erb.bak -------------------------------------------------------------------------------- /app/views/node/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/create.html.erb -------------------------------------------------------------------------------- /app/views/node/heartbeat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/heartbeat.html.erb -------------------------------------------------------------------------------- /app/views/node/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/index.html.erb -------------------------------------------------------------------------------- /app/views/node/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/app/views/node/show.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/events.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rails_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/rails_config.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wice_grid_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/wice_grid_config.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/wice_grid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/locales/wice_grid.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/settings.yml -------------------------------------------------------------------------------- /config/settings/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/settings/development.yml -------------------------------------------------------------------------------- /config/settings/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/config/settings/production.yml -------------------------------------------------------------------------------- /config/settings/test.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrate/20130723173421_create_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/db/migrate/20130723173421_create_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20130725023800_create_hive_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/db/migrate/20130725023800_create_hive_files.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/doc/nginx.conf -------------------------------------------------------------------------------- /doc/proxysite.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/doc/proxysite.conf -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/public/node.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seantmalone/HiveMind/HEAD/script/rails -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------