├── .DS_Store ├── .gitignore ├── .sass-cache ├── 5baea10fba0e0ce44e5a4667b677b91f29c861fa │ ├── ie.sassc │ ├── print.sassc │ └── screen.sassc ├── 6a256e27de1b8cba66b6f155ae67b4d51f740395 │ ├── base.scssc │ └── style.scssc ├── 6be141abbb3492de9b9587ee1600ab8354213b8b │ └── _reset.scssc ├── 6f80b9d79ff2ff14ca99e415c9ca23040bbc380f │ └── _utilities.scssc ├── b3a83e26eb5b782dfc44363a3ebd8e7d5a429913 │ └── style.scssc ├── b86915973911fc841da4fb760e58802999173286 │ ├── _animation.scssc │ ├── _background-image.scssc │ ├── _border-radius.scssc │ ├── _box-shadow.scssc │ ├── _box-sizing.scssc │ ├── _flex-box.scssc │ ├── _inline-block.scssc │ ├── _linear-gradient.scssc │ ├── _radial-gradient.scssc │ ├── _transform.scssc │ └── _transition.scssc ├── d46a9558aa28f01dac10a3263bef8a69c0c21a74 │ ├── base.scssc │ ├── flex.scssc │ ├── style.sassc │ └── style.scssc └── e10bbda4641a73b5730e8b8dd604b735bbc6707c │ ├── base.scssc │ ├── flex.scssc │ └── style.scssc ├── Capfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app.rb ├── app ├── .DS_Store ├── controllers │ ├── api_controller.rb │ ├── auth_controller.rb │ ├── facebook_controller.rb │ ├── rooms_controller.rb │ └── static_controller.rb ├── lib │ └── sass_init.rb ├── models │ ├── room.rb │ └── user.rb └── views │ ├── .DS_Store │ ├── ads │ ├── footer.erb │ └── sidebar.erb │ ├── auth │ ├── facebook.erb │ └── index.erb │ ├── layout.erb │ ├── rooms │ └── show.erb │ ├── static │ ├── 404.erb │ ├── error.erb │ ├── privacy.erb │ └── room.erb │ └── stylesheets │ ├── base.scss │ ├── flex.scss │ └── style.scss ├── config.ru ├── config ├── config.rb └── deploy.rb ├── log └── thin.log ├── public ├── .DS_Store ├── crossdomain.xml ├── favicon.ico ├── humans.txt ├── images │ ├── bg.jpg │ ├── bg.png │ ├── black-Linen.png │ ├── facebook.png │ ├── light-tile.gif │ ├── logo.png │ ├── map.png │ ├── pinstripe.png │ ├── polaroid.png │ ├── pubnub.png │ ├── texture.png │ ├── twitter.png │ └── yellow.png ├── javascripts │ ├── application.js │ ├── libs │ │ ├── jquery-1.6.2.min.js │ │ └── modernizr-2.0.6.min.js │ └── plugins.js └── robots.txt ├── spec ├── app_spec.rb ├── factories │ ├── room.rb │ └── user.rb ├── spec.opts └── spec_helper.rb └── tmp └── restart.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.gitignore -------------------------------------------------------------------------------- /.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/ie.sassc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/ie.sassc -------------------------------------------------------------------------------- /.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/print.sassc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/print.sassc -------------------------------------------------------------------------------- /.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/screen.sassc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/5baea10fba0e0ce44e5a4667b677b91f29c861fa/screen.sassc -------------------------------------------------------------------------------- /.sass-cache/6a256e27de1b8cba66b6f155ae67b4d51f740395/base.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/6a256e27de1b8cba66b6f155ae67b4d51f740395/base.scssc -------------------------------------------------------------------------------- /.sass-cache/6a256e27de1b8cba66b6f155ae67b4d51f740395/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/6a256e27de1b8cba66b6f155ae67b4d51f740395/style.scssc -------------------------------------------------------------------------------- /.sass-cache/6be141abbb3492de9b9587ee1600ab8354213b8b/_reset.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/6be141abbb3492de9b9587ee1600ab8354213b8b/_reset.scssc -------------------------------------------------------------------------------- /.sass-cache/6f80b9d79ff2ff14ca99e415c9ca23040bbc380f/_utilities.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/6f80b9d79ff2ff14ca99e415c9ca23040bbc380f/_utilities.scssc -------------------------------------------------------------------------------- /.sass-cache/b3a83e26eb5b782dfc44363a3ebd8e7d5a429913/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b3a83e26eb5b782dfc44363a3ebd8e7d5a429913/style.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_animation.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_animation.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_background-image.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_background-image.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_border-radius.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_border-radius.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_box-shadow.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_box-shadow.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_box-sizing.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_box-sizing.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_flex-box.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_flex-box.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_inline-block.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_inline-block.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_linear-gradient.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_linear-gradient.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_radial-gradient.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_radial-gradient.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_transform.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_transform.scssc -------------------------------------------------------------------------------- /.sass-cache/b86915973911fc841da4fb760e58802999173286/_transition.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/b86915973911fc841da4fb760e58802999173286/_transition.scssc -------------------------------------------------------------------------------- /.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/base.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/base.scssc -------------------------------------------------------------------------------- /.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/flex.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/flex.scssc -------------------------------------------------------------------------------- /.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/style.sassc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/style.sassc -------------------------------------------------------------------------------- /.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/d46a9558aa28f01dac10a3263bef8a69c0c21a74/style.scssc -------------------------------------------------------------------------------- /.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/base.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/base.scssc -------------------------------------------------------------------------------- /.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/flex.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/flex.scssc -------------------------------------------------------------------------------- /.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/.sass-cache/e10bbda4641a73b5730e8b8dd604b735bbc6707c/style.scssc -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/Rakefile -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app.rb -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/controllers/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/controllers/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/controllers/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/facebook_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/controllers/facebook_controller.rb -------------------------------------------------------------------------------- /app/controllers/rooms_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/controllers/rooms_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/controllers/static_controller.rb -------------------------------------------------------------------------------- /app/lib/sass_init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/lib/sass_init.rb -------------------------------------------------------------------------------- /app/models/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/models/room.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/.DS_Store -------------------------------------------------------------------------------- /app/views/ads/footer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/ads/footer.erb -------------------------------------------------------------------------------- /app/views/ads/sidebar.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/ads/sidebar.erb -------------------------------------------------------------------------------- /app/views/auth/facebook.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/auth/facebook.erb -------------------------------------------------------------------------------- /app/views/auth/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/auth/index.erb -------------------------------------------------------------------------------- /app/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/layout.erb -------------------------------------------------------------------------------- /app/views/rooms/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/rooms/show.erb -------------------------------------------------------------------------------- /app/views/static/404.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/static/404.erb -------------------------------------------------------------------------------- /app/views/static/error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/static/error.erb -------------------------------------------------------------------------------- /app/views/static/privacy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/static/privacy.erb -------------------------------------------------------------------------------- /app/views/static/room.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/static/room.erb -------------------------------------------------------------------------------- /app/views/stylesheets/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/stylesheets/base.scss -------------------------------------------------------------------------------- /app/views/stylesheets/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/stylesheets/flex.scss -------------------------------------------------------------------------------- /app/views/stylesheets/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/app/views/stylesheets/style.scss -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/config.ru -------------------------------------------------------------------------------- /config/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/config/config.rb -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /log/thin.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/log/thin.log -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/crossdomain.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/bg.jpg -------------------------------------------------------------------------------- /public/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/bg.png -------------------------------------------------------------------------------- /public/images/black-Linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/black-Linen.png -------------------------------------------------------------------------------- /public/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/facebook.png -------------------------------------------------------------------------------- /public/images/light-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/light-tile.gif -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/map.png -------------------------------------------------------------------------------- /public/images/pinstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/pinstripe.png -------------------------------------------------------------------------------- /public/images/polaroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/polaroid.png -------------------------------------------------------------------------------- /public/images/pubnub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/pubnub.png -------------------------------------------------------------------------------- /public/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/texture.png -------------------------------------------------------------------------------- /public/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/twitter.png -------------------------------------------------------------------------------- /public/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/images/yellow.png -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/javascripts/application.js -------------------------------------------------------------------------------- /public/javascripts/libs/jquery-1.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/javascripts/libs/jquery-1.6.2.min.js -------------------------------------------------------------------------------- /public/javascripts/libs/modernizr-2.0.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/javascripts/libs/modernizr-2.0.6.min.js -------------------------------------------------------------------------------- /public/javascripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/javascripts/plugins.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/spec/app_spec.rb -------------------------------------------------------------------------------- /spec/factories/room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/spec/factories/room.rb -------------------------------------------------------------------------------- /spec/factories/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/spec/factories/user.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/spec/spec.opts -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/ChatterBee/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /tmp/restart.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------