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 config/*.yml
public/assets/* public/assets/*
vendor/cache vendor/cache
bin
42 changes: 16 additions & 26 deletions Gemfile
@@ -1,20 +1,21 @@
source 'http://rubygems.org' source 'http://rubygems.org'
source "http://gems.github.com" source "http://gems.github.com"


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


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


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


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


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


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