Skip to content

Commit

Permalink
Removed ExtJS views in favor of using jQuery mobile. Have event new, …
Browse files Browse the repository at this point in the history
…create, show, edit, update working. Need to work on checkin next.
  • Loading branch information
Ethan Waldo committed Feb 16, 2012
1 parent a38240a commit 2e04cbf
Show file tree
Hide file tree
Showing 56 changed files with 12,013 additions and 32,501 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@ tmp/
config/*.yml
public/assets/*
vendor/cache
bin
42 changes: 16 additions & 26 deletions Gemfile
@@ -1,20 +1,21 @@
source 'http://rubygems.org'
source "http://gems.github.com"

gem 'rails', '3.1.0'
gem 'rails', '3.2.0'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

#gem 'sqlite3'
gem 'pg', '~>0.11.0'
gem 'devise', '~>1.4.5'
gem 'omniauth', '~>0.2.6'
gem "oa-oauth", '~>0.2.6', :require => "omniauth/oauth"
gem 'devise-twitter', '~>0.1.1'
gem 'cancan', '~>1.6.5'
gem 'will_paginate', '~>3.0.0'
gem 'date_validator', '~> 0.6.2'
gem 'pg'
gem 'devise'
gem 'omniauth'
gem "omniauth-twitter"
gem 'cancan'
gem 'will_paginate'
gem 'date_validator'
gem 'jquery-rails'
gem 'slim-rails'

# Use unicorn as the web server
gem 'unicorn'
Expand All @@ -23,27 +24,16 @@ gem 'unicorn'
gem 'capistrano'

group :assets do
gem 'execjs', '~>1.2.9'
gem 'therubyracer', '~>0.9.4'
gem 'sass-rails', '~>3.1.0'
gem 'uglifier', '~>1.0.3'
gem 'execjs'
gem 'therubyracer'
gem 'sass-rails'
gem 'uglifier'
end

group :development, :test do
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
#gem 'ruby-debug'
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'jasmine'
gem 'jasmine-headless-webkit'
end

# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'

# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end

0 comments on commit 2e04cbf

Please sign in to comment.