-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
42 lines (36 loc) · 1.13 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
source 'http://rubygems.org'
gem 'rails', '3.0.3'
gem 'active_enum'
gem 'acts_as_url', :git => 'git://github.com/Reprazent/acts_as_url.git'
gem 'convert_colors', :git => 'git://github.com/Reprazent/convert_colors.git'
gem 'devise'
gem 'jquery-rails'
gem 'mysql'
gem 'prawn', :git => 'git://github.com/sandal/prawn', :tag => '0.10.2', :submodules => true
gem 'responders'
gem 'state_machine'
gem 'thinking-sphinx', '2.0.1'
gem 'whenever'
gem 'will_paginate', '~> 3.0.beta'
group :production do
gem 'exception_notification', :git => 'http://github.com/rails/exception_notification.git', :require => 'exception_notifier'
end
group :test do
gem 'capybara'
gem 'cucumber-rails', :git => 'git://github.com/robholland/cucumber-rails.git'
gem 'database_cleaner', :git => 'git://github.com/bmabey/database_cleaner.git'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'launchy'
gem 'pickle'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'test-unit'
end
group :development, :test do
gem 'railroady'
gem 'yUMLmeRails', :git => 'http://github.com/tute/yUMLmeRails.git'
end
group :development do
gem 'capistrano'
gem 'openminds_deploy'
end