forked from testmycode/tmc-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (34 loc) · 999 Bytes
/
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
source 'http://rubygems.org'
# An alternative when rubygems.org is down
#source 'http://production.cf.rubygems.org/'
gem 'rails', '~> 3.1.11'
gem 'rake'
gem 'google-spreadsheet-ruby'
gem 'pg', '~> 0.11.0'
gem 'jquery-rails'
gem 'cancan', '~> 1.6.7'
gem 'rest-client', '~> 1.6.7'
gem 'daemons', '~> 1.1.4'
gem 'pg_comment', '~> 0.1.1'
gem 'natcmp', '~> 1.4'
gem 'fastercsv', :platforms => :ruby_18
gem 'foreigner', '~> 1.1.6'
gem 'xml-simple', '~> 1.1.1'
gem 'transaction_isolation', '~> 1.0.3'
gem 'andand'
gem 'haml-rails'
gem 'acts_as_api'
group :development, :test do
gem 'rspec', '~> 2.8.0'
gem 'rspec-core', '~> 2.8.0'
gem 'rspec-rails', '~> 2.8.0'
gem 'factory_girl_rails', '~> 1.1.0'
gem 'capybara', '~> 1.1.2'
gem 'capybara-webkit', '~> 0.7.2'
gem 'database_cleaner', '~> 0.6.7'
gem 'mimic', '~> 0.4.3'
gem 'ruby-prof', '~> 0.12.2' # for performance tests
gem 'launchy' # for capybara's save_and_open_page
gem 'railroady' # for doc/diagrams
gem 'simplecov'
end