├── .gitignore ├── .rspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── concerns │ ├── hash_lookup_helper.rb │ └── time_in_time_zone.rb ├── controllers │ ├── accounts_controller.rb │ ├── application_controller.rb │ ├── pages_controller.rb │ ├── sensors_controller.rb │ ├── sites_controller.rb │ └── users_controller.rb ├── helpers │ ├── accounts_helper.rb │ ├── application_helper.rb │ ├── pages_helper.rb │ ├── sensors_helper.rb │ ├── sites_helper.rb │ └── users_helper.rb ├── mailers │ └── user_mailer.rb ├── models │ ├── page.rb │ ├── sensor.rb │ ├── sensor_host.rb │ ├── site.rb │ └── user.rb ├── stylesheets │ ├── partials │ │ ├── _config.scss │ │ ├── _grid.scss │ │ ├── _mixins.scss │ │ └── _reset.scss │ └── screen.scss └── views │ ├── accounts │ └── edit.html.haml │ ├── devise │ ├── confirmations │ │ └── new.html.haml │ ├── mailer │ │ ├── confirmation_instructions.html.haml │ │ ├── reset_password_instructions.html.haml │ │ └── unlock_instructions.html.haml │ ├── passwords │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── registrations │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── sessions │ │ └── new.html.haml │ ├── shared │ │ └── _links.haml │ └── unlocks │ │ └── new.html.haml │ ├── layouts │ └── application.html.haml │ ├── pages │ ├── not_found.html.haml │ └── show.html.haml │ ├── sensors │ ├── _query_form.html.haml │ ├── _referrer_form.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── sites │ ├── _form.html.haml │ ├── _tracking_code.html.haml │ ├── edit.html.haml │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml │ ├── user_mailer │ └── account_information.html.haml │ └── users │ ├── index.html.haml │ ├── new.html.haml │ └── show.html.haml ├── autotest └── discover.rb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── compass.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── devise.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── simple_form.rb │ └── snowfinch.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── routes.rb └── snowfinch.yml ├── db ├── migrate │ ├── 20110216145846_devise_create_users.rb │ ├── 20110219100357_create_sites.rb │ ├── 20110228121355_add_token_to_sites.rb │ ├── 20110303181824_add_time_zone_to_sites.rb │ ├── 20110311114859_create_sensors.rb │ ├── 20110316161329_add_type_and_query_fields_to_sensors.rb │ ├── 20110316184425_create_sensor_hosts.rb │ └── 20110410155204_remove_password_salt_from_users.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── configuration.rb ├── mongo_ext.rb └── tasks │ └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── rails.png │ ├── template-bg.png │ └── template-header.png ├── javascripts │ ├── application.js │ ├── jquery.flot.js │ ├── jquery.js │ └── rails.js ├── robots.txt ├── stylesheets │ └── .gitkeep └── tracker.js ├── script └── rails ├── spec ├── acceptance │ ├── acceptance_helper.rb │ ├── account_spec.rb │ ├── authentication_spec.rb │ ├── monitoring_spec.rb │ ├── navigation_spec.rb │ ├── pages_spec.rb │ ├── sites_spec.rb │ ├── support │ │ ├── helpers.rb │ │ ├── matchers.rb │ │ └── paths.rb │ └── users_spec.rb ├── factories.rb ├── helpers │ ├── accounts_helper_spec.rb │ ├── application_helper_spec.rb │ ├── pages_helper_spec.rb │ ├── sensors_helper_spec.rb │ ├── sites_helper_spec.rb │ └── users_helper_spec.rb ├── models │ ├── page_spec.rb │ ├── sensor_host_spec.rb │ ├── sensor_spec.rb │ ├── site_spec.rb │ └── user_spec.rb └── spec_helper.rb └── vendor └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format Fuubar 2 | --colour 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/Rakefile -------------------------------------------------------------------------------- /app/concerns/hash_lookup_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/concerns/hash_lookup_helper.rb -------------------------------------------------------------------------------- /app/concerns/time_in_time_zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/concerns/time_in_time_zone.rb -------------------------------------------------------------------------------- /app/controllers/accounts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/accounts_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/sensors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/sensors_controller.rb -------------------------------------------------------------------------------- /app/controllers/sites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/sites_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/accounts_helper.rb: -------------------------------------------------------------------------------- 1 | module AccountsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sensors_helper.rb: -------------------------------------------------------------------------------- 1 | module SensorsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/sites_helper.rb: -------------------------------------------------------------------------------- 1 | module SitesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/sensor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/models/sensor.rb -------------------------------------------------------------------------------- /app/models/sensor_host.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/models/sensor_host.rb -------------------------------------------------------------------------------- /app/models/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/models/site.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/stylesheets/partials/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/stylesheets/partials/_config.scss -------------------------------------------------------------------------------- /app/stylesheets/partials/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/stylesheets/partials/_grid.scss -------------------------------------------------------------------------------- /app/stylesheets/partials/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/stylesheets/partials/_mixins.scss -------------------------------------------------------------------------------- /app/stylesheets/partials/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/stylesheets/partials/_reset.scss -------------------------------------------------------------------------------- /app/stylesheets/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/stylesheets/screen.scss -------------------------------------------------------------------------------- /app/views/accounts/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/accounts/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/confirmations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/mailer/confirmation_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/mailer/reset_password_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/mailer/unlock_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/registrations/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/registrations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/shared/_links.haml -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/devise/unlocks/new.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/pages/not_found.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/pages/not_found.html.haml -------------------------------------------------------------------------------- /app/views/pages/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/pages/show.html.haml -------------------------------------------------------------------------------- /app/views/sensors/_query_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/_query_form.html.haml -------------------------------------------------------------------------------- /app/views/sensors/_referrer_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/_referrer_form.html.haml -------------------------------------------------------------------------------- /app/views/sensors/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/edit.html.haml -------------------------------------------------------------------------------- /app/views/sensors/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/index.html.haml -------------------------------------------------------------------------------- /app/views/sensors/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/new.html.haml -------------------------------------------------------------------------------- /app/views/sensors/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sensors/show.html.haml -------------------------------------------------------------------------------- /app/views/sites/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/_form.html.haml -------------------------------------------------------------------------------- /app/views/sites/_tracking_code.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/_tracking_code.html.haml -------------------------------------------------------------------------------- /app/views/sites/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/edit.html.haml -------------------------------------------------------------------------------- /app/views/sites/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/index.html.haml -------------------------------------------------------------------------------- /app/views/sites/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/new.html.haml -------------------------------------------------------------------------------- /app/views/sites/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/sites/show.html.haml -------------------------------------------------------------------------------- /app/views/user_mailer/account_information.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/user_mailer/account_information.html.haml -------------------------------------------------------------------------------- /app/views/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/users/index.html.haml -------------------------------------------------------------------------------- /app/views/users/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/users/new.html.haml -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /autotest/discover.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/autotest/discover.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/compass.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/snowfinch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/initializers/snowfinch.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/snowfinch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/config/snowfinch.yml -------------------------------------------------------------------------------- /db/migrate/20110216145846_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110216145846_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20110219100357_create_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110219100357_create_sites.rb -------------------------------------------------------------------------------- /db/migrate/20110228121355_add_token_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110228121355_add_token_to_sites.rb -------------------------------------------------------------------------------- /db/migrate/20110303181824_add_time_zone_to_sites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110303181824_add_time_zone_to_sites.rb -------------------------------------------------------------------------------- /db/migrate/20110311114859_create_sensors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110311114859_create_sensors.rb -------------------------------------------------------------------------------- /db/migrate/20110316161329_add_type_and_query_fields_to_sensors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110316161329_add_type_and_query_fields_to_sensors.rb -------------------------------------------------------------------------------- /db/migrate/20110316184425_create_sensor_hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110316184425_create_sensor_hosts.rb -------------------------------------------------------------------------------- /db/migrate/20110410155204_remove_password_salt_from_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/migrate/20110410155204_remove_password_salt_from_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/lib/configuration.rb -------------------------------------------------------------------------------- /lib/mongo_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/lib/mongo_ext.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/images/template-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/images/template-bg.png -------------------------------------------------------------------------------- /public/images/template-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/images/template-header.png -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/javascripts/jquery.flot.js -------------------------------------------------------------------------------- /public/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/javascripts/jquery.js -------------------------------------------------------------------------------- /public/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/javascripts/rails.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/public/tracker.js -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/script/rails -------------------------------------------------------------------------------- /spec/acceptance/acceptance_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/acceptance_helper.rb -------------------------------------------------------------------------------- /spec/acceptance/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/account_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/authentication_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/monitoring_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/monitoring_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/navigation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/navigation_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/pages_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/sites_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/sites_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/support/helpers.rb -------------------------------------------------------------------------------- /spec/acceptance/support/matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/support/matchers.rb -------------------------------------------------------------------------------- /spec/acceptance/support/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/support/paths.rb -------------------------------------------------------------------------------- /spec/acceptance/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/acceptance/users_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/helpers/accounts_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/accounts_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/pages_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/pages_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/sensors_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/sensors_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/sites_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/sites_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/users_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/helpers/users_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/models/page_spec.rb -------------------------------------------------------------------------------- /spec/models/sensor_host_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/models/sensor_host_spec.rb -------------------------------------------------------------------------------- /spec/models/sensor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/models/sensor_spec.rb -------------------------------------------------------------------------------- /spec/models/site_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/models/site_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcxplorer/snowfinch/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------