Skip to content

Commit

Permalink
Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Aug 30, 2010
1 parent 61a7e19 commit 9887641
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .gitignore
@@ -1,12 +1,13 @@
*.gem
*.log
.DS_Store
.bundle
.rspec
db/*.sqlite3
db/*.sqlite3-journal
log/*.log
tmp/**/*
webrat.log
pkg/*
spec/dummy/db/*.sqlite3
spec/dummy/db/*.sqlite3-journal
spec/dummy/log/*.log
tmp/**/*
12 changes: 8 additions & 4 deletions Gemfile
@@ -1,12 +1,16 @@
source 'http://rubygems.org'

gem 'rails', '3.0.0'
gem 'devise'
gem 'builder'
group :test, :development do
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'jeweler'
gem 'devise'

# 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 'dummy_data'
gem 'jeweler'
gem "rspec-rails", ">= 2.0.0.beta.20"
gem 'sqlite3-ruby', :require => 'sqlite3'
gem "webrat", :git => "git://github.com/kalv/webrat.git"
end

0 comments on commit 9887641

Please sign in to comment.