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
|
source 'https://rubygems.org'
gem 'rails', '4.2.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2', '~> 0.3.18'
gem 'json', '~>1.8.2'
gem 'jbuilder', '~> 2.0'
# Gems used only for assets and not required
# in production environments by default.
#group :assets do
# gem 'sass-rails', "~> 3.2.0"
# gem 'coffee-rails', "~> 3.2.0"
# gem 'uglifier'
#end
gem 'prototype-rails', github: 'rails/prototype-rails', branch: '4.2'
# Use unicorn as the web server
#gem 'unicorn'
gem 'thin'
# Deploy with Capistrano
gem 'capistrano'
# gem 'exception_notification'
group :development do
# No debugger at the moment because of the stupid build system of a dependency of ruby-debug19
# gem 'ruby-debug', :platforms => :ruby_18
# gem 'ruby-debug19', :platforms => :ruby_19
# gem 'require_relative'
end
gem 'mechanize'
gem 'fastercsv'
gem 'diff-lcs', require: 'diff/lcs'
gem 'nokogiri'
gem 'text-format-revised', require: 'text/format'
gem 'kramdown'
gem 'thinking-sphinx', '~> 3.1.4'
#FIXME: runspell 0.0.1 is dead since 2011, we may need
#to create a new spelling module
#gem 'runspell'
# gem "rdoc"
group :test do
gem 'simplecov'
gem 'ci_reporter'
gem 'rspec'
gem 'minitest-reporters'
end
|