Moved to the bootstrap-sass gem, lot's of styling issues fixed

This commit is contained in:
Henne Vogelsang 2013-06-26 15:59:56 +02:00 committed by Henne Vogelsang
parent 94e014ac40
commit 2a927a42b0
23 changed files with 290 additions and 1124 deletions

29
Gemfile
View file

@ -10,6 +10,7 @@ gem 'rails', '3.2.11'
group :assets do
gem 'sass-rails', '~> 3.2.3'
# gem 'coffee-rails', '~> 3.2.1'
gem 'bootstrap-sass'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
@ -17,6 +18,21 @@ group :assets do
gem 'uglifier', '>= 1.2.2'
end
group :development, :test do
gem 'pry'
gem 'sqlite3'
gem 'thin'
gem 'rspec-rails', '2.11.0'
end
group :production do
gem 'mysql2'
end
group :test do
gem 'capybara', '1.1.2'
end
gem 'will_paginate'
gem 'paperclip', '~> 3.0'
gem 'jquery-rails'
@ -34,15 +50,4 @@ gem 'acts_as_commentable_with_threading'
gem 'prawn'
gem 'prawn_rails'
gem 'gravtastic'
group :development, :test do
gem 'pry'
gem 'sqlite3'
gem 'thin'
gem 'rspec-rails', '2.11.0'
end
group :production do
gem 'mysql2'
end
group :test do
gem 'capybara', '1.1.2'
end