forked from katipo/kakama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
79 lines (73 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'http://rubygems.org'
ruby '1.9.3'
gem 'rails', '~> 3.2.0'
gem 'rake', '0.9.1'
gem 'active_scaffold', '~> 3.4.7'
#gem 'calendar_date_select', '~> 2.0.0'
gem 'calendar_date_select', :git => 'git://github.com/paneq/calendar_date_select.git'
gem 'authlogic', '~> 3.2.0'
gem 'formtastic', '~> 2.3.1'
gem 'will_paginate', '~> 3.0'
gem 'faker', '0.3.1'
gem 'ruby-progressbar', '0.0.10'
gem 'whenever', '~> 0.9.2'
gem 'ruby-prof', '~> 0.15.1'
gem 'simplecov', '~> 0.9.0'
gem 'chronic', '~> 0.6.3'
gem 'daemons', '1.0.10'
gem 'timecop', '0.3.4'
gem 'nokogiri'
gem 'ruby-terminfo', '0.1.1'
gem 'database_cleaner', '0.5.0'
gem 'webrat', '0.7.3'
gem 'spreadsheet'
gem 'fastercsv'
gem 'csv_builder', '~> 2.1.1'
gem 'validates_as_email_address'
gem 'mimetype-fu', :require => 'mimetype_fu'
gem 'delayed_job', '1.8.5'
gem 'prawn', '0.7.2'
gem 'prawn-layout', '0.7.2', :require => 'prawn/layout'
gem 'pg'
gem 'seed-fu', '~> 2.3.3'
gem 'spreadsheet_on_rails', '~> 1.0.0'
gem 'mysql2', '~> 0.3.10', require: false
gem 'strong_parameters'
gem 'active_model_serializers'
#Assets
group :assets do
gem 'therubyracer', '~> 0.9.2'
gem 'sass-rails', "~> 3.2.3"
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier'
# gem 'prototype-rails', '~> 3.2.1'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'fullcalendar-rails'
gem 'momentjs-rails'
end
group :development do
gem 'jazz_hands'
gem 'spring'
gem 'better_errors', '~>1.1.0'
gem 'binding_of_caller'
gem 'spring-commands-cucumber'
gem 'annotate'
gem 'factory_girl_rails', '~> 4.5.0'
gem 'swagger-blocks'
end
#Test group
group :test do
gem 'cucumber', '~> 1.3.8'
gem 'cucumber-rails', '~> 1.3.0', :require => false
gem 'term-ansicolor'
gem 'treetop'
gem 'diff-lcs'
gem 'builder'
gem 'rspec', '~> 3.1.0'
gem 'rspec-rails', '~> 3.1.0'
gem 'email_spec', '~> 1.6.0'
gem 'capybara', '~> 2.4.4'
end