Permalink
Please sign in to comment.
Showing
with
8,553 additions
and 14,641 deletions.
- +1 −3 .gitignore
- +10 −15 Gemfile
- +120 −91 Gemfile.lock
- +0 −20 MIT-LICENSE
- +256 −0 README
- +0 −33 README.markdown
- +1 −1 Rakefile
- +5 −0 TODO
- +9 −0 app/controllers/app_controller.rb
- +6 −28 app/controllers/application_controller.rb
- +0 −39 app/controllers/assets_controller.rb
- +10 −0 app/controllers/authorize_controller.rb
- +22 −0 app/controllers/channels_controller.rb
- +10 −0 app/controllers/messages_controller.rb
- +0 −9 app/controllers/pages_controller.rb
- +0 −26 app/controllers/ria_controller.rb
- +0 −26 app/controllers/settings_controller.rb
- +0 −26 app/controllers/user_sessions_controller.rb
- +0 −70 app/controllers/users_controller.rb
- +14 −0 app/helpers/app_helper.rb
- +2 −0 app/helpers/application_helper.rb
- +2 −0 app/helpers/authorize_helper.rb
- +2 −0 app/helpers/channels_helper.rb
- +0 −5 app/helpers/pages_helper.rb
- +0 −29 app/helpers/ria_helper.rb
- +45 −65 app/javascripts/application.js
- +0 −66 app/javascripts/application.juggernaut.js
- +0 −35 app/javascripts/application.utils.js
- +105 −0 app/javascripts/controllers/messages.js
- +36 −0 app/javascripts/controllers/searches.js
- +12 −0 app/javascripts/controllers/settings.js
- +43 −0 app/javascripts/controllers/sidebar.js
- +69 −0 app/javascripts/juggernaut.js
- +21 −0 app/javascripts/lib/array.ext.js
- +0 −139 app/javascripts/lib/jquery.animation.js
- +0 −38 app/javascripts/lib/jquery.drop.js
- +0 −61 app/javascripts/lib/jquery.editable.js
- +0 −66 app/javascripts/lib/jquery.ios.js
- +3,667 −1,591 app/javascripts/lib/jquery.js
- +0 −231 app/javascripts/lib/jquery.md5.js
- +0 −135 app/javascripts/lib/jquery.timeago.js
- +503 −0 app/javascripts/lib/jquery.tmpl.js
- +0 −38 app/javascripts/lib/jquery.tooltip.js
- +0 −33 app/javascripts/lib/jquery.upload.js
- +481 −0 app/javascripts/lib/json2.js
- +0 −9 app/javascripts/lib/rails.application.js
- +0 −132 app/javascripts/lib/rails.js
- +1,884 −0 app/javascripts/lib/require.js
- +49 −0 app/javascripts/lib/spine.controller.manager.js
- +461 −0 app/javascripts/lib/spine.js
- +69 −0 app/javascripts/lib/spine.model.ajax.js
- +18 −0 app/javascripts/lib/spine.model.local.js
- +0 −72 app/javascripts/lib/superapp.js
- +0 −101 app/javascripts/lib/superapp.view.js
- +0 −57 app/javascripts/lib/superclass.js
- +0 −303 app/javascripts/lib/superconnect.js
- +0 −40 app/javascripts/lib/superevent.js
- +0 −290 app/javascripts/lib/supermodel.js
- +0 −75 app/javascripts/lib/supermodel.relation.js
- +0 −71 app/javascripts/lib/superroute.js
- +0 −105 app/javascripts/lib/superrpc.js
- +0 −19 app/javascripts/loader.js
- +0 −5 app/javascripts/models/activity.js
- +0 −31 app/javascripts/models/asset.js
- +10 −12 app/javascripts/models/channel.js
- +0 −19 app/javascripts/models/channel_activity.js
- +24 −0 app/javascripts/models/message.js
- +0 −21 app/javascripts/models/roster.js
- +49 −26 app/javascripts/models/search.js
- +0 −4 app/javascripts/models/user.js
- +0 −196 app/javascripts/shared.js
- +0 −6 app/javascripts/states/activity.js
- +0 −154 app/javascripts/states/channel.activity.js
- +0 −118 app/javascripts/states/channel.asset.js
- +0 −55 app/javascripts/states/channel.js
- +0 −32 app/javascripts/states/channel.roster.js
- +0 −28 app/javascripts/states/intro.js
- +0 −6 app/javascripts/states/loading.js
- +0 −36 app/javascripts/states/menu.js
- +0 −36 app/javascripts/states/search.js
- +0 −58 app/javascripts/states/settings.js
- +8 −0 app/javascripts/utils.js
- +0 −30 app/models/activity.rb
- +0 −27 app/models/asset.rb
- +3 −32 app/models/channel.rb
- +0 −39 app/models/channel_activity.rb
- +0 −17 app/models/comment.rb
- +9 −0 app/models/message.rb
- +0 −68 app/models/roster.rb
- +0 −49 app/models/user.rb
- +0 −9 app/models/user_channel.rb
- +0 −9 app/models/user_session.rb
- +3 −16 app/observers/juggernaut_observer.rb
- +167 −190 app/stylesheets/application.less
- +0 −137 app/stylesheets/states/activity.less
- +0 −79 app/stylesheets/states/channel.less
- +0 −91 app/stylesheets/states/intro.less
- +0 −6 app/stylesheets/states/loading.less
- +0 −10 app/stylesheets/states/search.less
- +0 −58 app/stylesheets/states/settings.less
- +94 −37 app/stylesheets/theme.less
- +12 −0 app/stylesheets/utils.less
- +3 −0 app/views/app/_channels.html
- +4 −0 app/views/app/_message.html.erb
- +4 −0 app/views/app/_search.html.erb
- +64 −0 app/views/app/index.html.erb
- +3 −5 app/views/layouts/application.html.erb
- +0 −28 app/views/layouts/backend.html.erb
- +0 −1 app/views/pages/more.html.erb
- +0 −187 app/views/ria/index.html.erb
- +0 −19 app/views/settings/connect.html.erb
- +0 −36 app/views/user_sessions/new.html.erb
- +0 −42 app/views/users/edit.html.erb
- +0 −42 app/views/users/new.html.erb
- +1 −1 config.ru
- +11 −16 config/application.rb
- +0 −28 config/application.yml
- +3 −10 config/boot.rb
- +3 −3 config/database.yml
- +1 −1 config/environment.rb
- +9 −6 config/environments/development.rb
- +6 −8 config/environments/production.rb
- +5 −2 config/environments/test.rb
- +1 −1 config/initializers/backtrace_silencers.rb
- +1 −0 config/initializers/ext.rb
- +1 −1 config/initializers/inflections.rb
- +1 −0 config/initializers/juggernaut.rb
- +3 −0 config/initializers/omniauth.rb
- +0 −13 config/initializers/preload.rb
- +2 −2 config/initializers/secret_token.rb
- +3 −3 config/initializers/session_store.rb
- +24 −35 config/routes.rb
- +0 −117 db/development_structure.sql
- +12 −0 db/migrate/20110324001706_create_channels.rb
- +12 −0 db/migrate/20110324051348_create_messages.rb
- +11 −0 db/migrate/20110325083934_add_guids.rb
- +9 −0 db/migrate/20110325211741_add_channel_id_to_messages.rb
- +9 −0 db/migrate/20110326065302_add_name_to_messages.rb
- +9 −65 db/schema.rb
- +7 −0 db/seeds.rb
- +0 −64 lib/active_model/serialize_options.rb
- +0 −18 lib/active_record/creator.rb
- +1 −1 lib/active_record/{random_id.rb → guid.rb}
- +0 −16 lib/app_config.rb
- +0 −169 lib/blather/app.rb
- +0 −19 lib/status_error.rb
- +0 −21 lib/supermodel/creator.rb
- +0 −113 lib/superrpc.rb
- 0 log/.gitkeep
- BIN public/.DS_Store
- BIN public/audio/new.m4a
- BIN public/images/account.png
- BIN public/images/area-overlay.png
- BIN public/images/arrow2.png
- BIN public/images/avatar.jpg
- BIN public/images/broadcast.png
- BIN public/images/email.png
- BIN public/images/intro.png
- BIN public/images/logout.png
- BIN public/images/mime/audio.png
- BIN public/images/mime/document.png
- BIN public/images/mime/image.png
- BIN public/images/mime/spreadsheet.png
- BIN public/images/mime/unknown.png
- BIN public/images/mime/zip.png
- BIN public/images/missing.png
- BIN public/images/progress-bar.png
- BIN public/images/site.png
- BIN public/images/twitter.png
- +0 −6,240 public/javascripts/jquery.js
- +0 −127 public/javascripts/rails.js
- +0 −205 public/stylesheets/backend.css
- +0 −73 public/stylesheets/layout.css
- +0 −3 public/stylesheets/user_sessions.css
- +0 −3 public/stylesheets/users.css
- +0 −5 script/roster
- 0 test/fixtures/{assets.yml → channels.yml}
- 0 test/fixtures/{comments.yml → chats.yml}
- +0 −11 test/fixtures/emails.yml
- +0 −11 test/fixtures/groups.yml
- +0 −11 test/fixtures/user_groups.yml
- +0 −8 test/functional/activity_controller_test.rb
- +0 −8 test/functional/api_controller_test.rb
- +1 −1 test/functional/{ria_controller_test.rb → app_controller_test.rb}
- +1 −1 test/functional/{assets_controller_test.rb → authorize_controller_test.rb}
- +0 −8 test/functional/channel_activity_controller_test.rb
- +1 −1 test/{unit/activity_observer_test.rb → functional/chat_controller_test.rb}
- +0 −8 test/functional/emails_controller_test.rb
- +0 −8 test/functional/inbox_test.rb
- +0 −8 test/functional/settings_controller_test.rb
- +0 −8 test/functional/user_mailer_test.rb
- +0 −8 test/functional/user_sessions_controller_test.rb
- +0 −8 test/functional/users_controller_test.rb
- +0 −8 test/unit/asset_test.rb
- +1 −1 test/unit/{comment_test.rb → channel_test.rb}
- +1 −1 test/unit/{email_test.rb → chat_test.rb}
- +0 −8 test/unit/group_test.rb
- +0 −4 test/unit/helpers/activity_helper_test.rb
- +0 −4 test/unit/helpers/api_helper_test.rb
- +4 −0 test/unit/helpers/app_helper_test.rb
- +0 −4 test/unit/helpers/assets_helper_test.rb
- +4 −0 test/unit/helpers/authorize_helper_test.rb
- +0 −4 test/unit/helpers/channel_activity_helper_test.rb
- +4 −0 test/unit/helpers/chat_helper_test.rb
- +0 −4 test/unit/helpers/emails_helper_test.rb
- +0 −4 test/unit/helpers/pages_helper_test.rb
- +0 −4 test/unit/helpers/ria_helper_test.rb
- +0 −4 test/unit/helpers/settings_helper_test.rb
- +0 −4 test/unit/helpers/user_sessions_helper_test.rb
- +0 −4 test/unit/helpers/users_helper_test.rb
- +1 −1 test/{functional/pages_controller_test.rb → unit/juggernaut_observer_test.rb}
- +0 −8 test/unit/user_group_test.rb
- +0 −20 vendor/plugins/dynamic_form/MIT-LICENSE
- +0 −13 vendor/plugins/dynamic_form/README
- +0 −10 vendor/plugins/dynamic_form/Rakefile
- +0 −5 vendor/plugins/dynamic_form/init.rb
- +0 −300 vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb
- +0 −8 vendor/plugins/dynamic_form/lib/action_view/locale/en.yml
- +0 −42 vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb
- +0 −370 vendor/plugins/dynamic_form/test/dynamic_form_test.rb
- +0 −9 vendor/plugins/dynamic_form/test/test_helper.rb
@@ -1,6 +1,4 @@ | ||
.bundle | ||
db/*.sqlite3 | ||
log/*.log | ||
-tmp/**/* | ||
-vendor/bundle | ||
-vendor/gems | ||
+tmp/ |
@@ -1,24 +1,19 @@ | ||
-# Edit this Gemfile to bundle your application's dependencies. | ||
-source 'http://rubygems.org' | ||
+source "http://rubygems.org" | ||
-gem "rails", "= 3.0.0" | ||
- | ||
-gem "authlogic", :git => "git://github.com/maccman/authlogic.git" | ||
-gem "redis", ">= 2.0.0.rc2" | ||
-gem "supermodel", :git => "git://github.com/maccman/supermodel.git" | ||
-gem "juggernaut", ">= 2.0.0.beta3" | ||
- | ||
-gem "paperclip", :git => "git://github.com/thoughtbot/paperclip.git" | ||
-gem "aws-s3", :require => "aws/s3" | ||
+gem "rails", "3.0.5" | ||
gem "less", :git => "git://github.com/maccman/less.git" | ||
gem "rack-less" | ||
gem "rack-sprockets" | ||
gem "yui-compressor" | ||
+gem "supermodel" | ||
+ | ||
+gem "mysql2" | ||
+gem "juggernaut" | ||
+gem "thin" | ||
+ | ||
+gem "omniauth" | ||
group :development do | ||
gem "ruby-debug19", :require => "ruby-debug" | ||
-end | ||
- | ||
-gem "mysql2" | ||
-gem "thin" | ||
+end |
211
Gemfile.lock
20
MIT-LICENSE
@@ -1,20 +0,0 @@ | ||
-Copyright (c) 2010 Alexander MacCaw | ||
- | ||
-Permission is hereby granted, free of charge, to any person obtaining | ||
-a copy of this software and associated documentation files (the | ||
-"Software"), to deal in the Software without restriction, including | ||
-without limitation the rights to use, copy, modify, merge, publish, | ||
-distribute, sublicense, and/or sell copies of the Software, and to | ||
-permit persons to whom the Software is furnished to do so, subject to | ||
-the following conditions: | ||
- | ||
-The above copyright notice and this permission notice shall be | ||
-included in all copies or substantial portions of the Software. | ||
- | ||
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |

Oops, something went wrong.
0 comments on commit
faab542