Skip to content

Commit

Permalink
Dev: remove unused gems from gemfile for rails 3.1.0.beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed May 7, 2011
1 parent 0a16c83 commit 944478b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
3 changes: 2 additions & 1 deletion Rakefile
Expand Up @@ -84,10 +84,11 @@ namespace :generate do
desc "generate a fresh app with rspec installed"
task :app do |t|
unless File.directory?('./tmp/example_app')
sh "rails new ./tmp/example_app --skip-test-unit --skip-javascript --skip-gemfile --skip-git"
sh "rails new ./tmp/example_app --skip-javascript --skip-gemfile --skip-git"
bindir = File.expand_path("gemfiles/bin")
if test ?d, bindir
Dir.chdir("./tmp/example_app") do
sh "rm -rf test"
sh "ln -s #{bindir}"
end
end
Expand Down
11 changes: 0 additions & 11 deletions gemfiles/rails-3.1.0.beta1
Expand Up @@ -3,14 +3,3 @@ require File.expand_path("../base.rb", __FILE__)
extend GemfileBase

gem "rails", "3.1.0.beta1"

# From the Gemfile generated by 'rails new ....'
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'

group :test do
# Pretty printed test output
gem 'turn', :require => false
end

0 comments on commit 944478b

Please sign in to comment.