pentabarf import updated
* more documentation on importing from pentabarf * improved event rating import speed * carefully import long links * fix user role import * redirect deleted users * respect conference timezone on event import * sorted Gemfile
Showing
... | ... | @@ -4,34 +4,34 @@ ruby "1.9.3" |
gem 'rails', '3.2.11' | ||
gem 'sqlite3' | ||
gem 'pg' | ||
gem 'mysql2' | ||
gem 'pg' | ||
gem 'sqlite3' | ||
gem 'acts_as_commentable' | ||
gem 'acts_as_indexed' | ||
gem 'barista' | ||
gem 'bcrypt-ruby' | ||
gem 'cancan' | ||
gem 'haml' | ||
gem 'acts_as_commentable' | ||
gem 'will_paginate' | ||
gem 'paperclip', '< 3.0' | ||
gem 'gravatar-ultimate' | ||
gem 'cocoon' | ||
gem 'formtastic', '~> 2.1.0' | ||
gem 'formtastic-bootstrap', :git => "git://github.com/katastrophie/formtastic-bootstrap.git" | ||
gem 'gravatar-ultimate' | ||
gem 'haml' | ||
gem 'jquery-rails', '~> 1.0.19' | ||
gem 'acts_as_indexed' | ||
gem 'cocoon' | ||
gem 'paper_trail', '2.3.3' | ||
gem 'json' | ||
gem 'localized_language_select', '0.2.0', :git => "git://github.com/oneiros/localized_language_select.git" | ||
gem 'nokogiri' | ||
gem 'paperclip', '< 3.0' | ||
gem 'paper_trail', '2.3.3' | ||
gem 'prawn' | ||
gem 'prawn_rails' | ||
gem 'ransack' | ||
gem 'transitions', :require => ["transitions", "active_record/transitions"] | ||
gem 'json' | ||
gem 'barista' | ||
gem 'ri_cal' | ||
gem 'nokogiri' | ||
gem 'settingslogic' | ||
gem 'transitions', :require => ["transitions", "active_record/transitions"] | ||
gem 'twitter-bootstrap-rails', :git => "git://github.com/seyhunak/twitter-bootstrap-rails.git", :ref => "5e62b21c8f258010af7f5bc858b89a24f16936a9" | ||
gem 'formtastic-bootstrap', :git => "git://github.com/katastrophie/formtastic-bootstrap.git" | ||
gem 'prawn' | ||
gem 'prawn_rails' | ||
gem 'will_paginate' | ||
group :development, :test do | ||
gem 'bullet' | ||
... | ... | @@ -40,19 +40,19 @@ group :development, :test do |
end | ||
group :test do | ||
gem 'minitest' | ||
gem 'factory_girl_rails', '~> 1.2.0' | ||
gem 'minitest' | ||
gem 'turn', :require => false | ||
end | ||
group :development do | ||
gem 'hpricot' | ||
gem 'yaml_db' | ||
gem 'shotgun' | ||
gem 'yaml_db' | ||
end | ||
group :assets do | ||
gem 'sass-rails', " ~> 3.2.0" | ||
gem 'coffee-rails', " ~> 3.2.0" | ||
gem 'sass-rails', " ~> 3.2.0" | ||
gem 'uglifier' | ||
end |
Please register or sign in to comment