You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
660 B
32 lines
660 B
source 'https://rubygems.org'
|
|
|
|
gem 'rails', '~>3.2'
|
|
gem 'sqlite3'
|
|
gem 'json'
|
|
|
|
group :assets do
|
|
gem 'sass-rails', '~> 3.2.3'
|
|
gem 'coffee-rails', '~> 3.2.1'
|
|
gem 'uglifier', '>= 1.0.3'
|
|
end
|
|
|
|
gem 'acts_as_list', '~>0.2'
|
|
gem 'acts_as_paranoid', '~>0.4'
|
|
gem 'acts_as_versioned', :git => 'https://github.com/jwhitehorn/acts_as_versioned.git'
|
|
gem 'bluecloth', '1.0.0', :path => './vendor/gems/bluecloth'
|
|
gem 'calendar_helper', "~>0.2"
|
|
gem 'dynamic_form'
|
|
gem 'haml', '~>3.1'
|
|
gem 'hpricot', '~>0.8'
|
|
gem 'icalendar', '~>1.0'
|
|
gem 'jquery-rails'
|
|
gem 'shoulda', "~>3.5"
|
|
gem 'will_paginate', "~>3.0"
|
|
gem 'simplecov'
|
|
|
|
group :test do
|
|
gem 'turn'
|
|
#gem 'silencer'
|
|
end
|
|
|