-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
80 lines (64 loc) · 1.61 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
source 'http://rubygems.org'
gem 'rails', '~>3.0.3'
gem 'rake', '~> 0.8.7'
# gem 'mysql2'
gem 'simple_form'
gem 'capistrano'
gem 'fastercsv'
gem 'unicorn'
# Jasmine
gem 'jasmine'
gem 'meta_search'
gem 'haml'
gem 'compass'
gem 'kaminari'
gem 'newrelic_rpm'
#necessary for sunspot solr in rails 3
#File/Video Upload tool
gem 'carrierwave'
gem 'streamio-ffmpeg'
#still need the USP segmenter
#pagination tool
#gem "will_paginate", "~> 3.0pre2"
gem "resque", :require => "resque/server"
gem 'rest-client'
#gem "SystemTimer"
#gem 'delayed_paperclip', :git => #'git://github.com/jstorimer/delayed_paperclip.git', :branch => 'rails3'
gem 'narray'
gem 'devise'
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem "cancan"
gem 'SystemTimer', :platforms => :mri_18
#gem 'devise_invitable', '0.3.4'
#group :production do
gem 'hoptoad_notifier'
#end
gem 'cove_search', :git => 'git://github.com/rweald/cove_search'
gem 'token-auth-video-server', :git => "git://github.com/rweald/token-auth-video-server.git"
group :development, :test do
gem "jquery-rails", ">= 0.2.6"
gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'fakefs', :require => 'fakefs/safe'
gem 'rails3-generators'
gem "rspec-rails", ">= 2.6.0.rc2"
gem 'email_spec'
gem "capybara"
gem "cucumber"
gem 'launchy'
gem "database_cleaner"
gem "cucumber-rails"
gem "nokogiri"
gem "autotest"
gem 'autotest-rails'
gem 'ruby-debug19', :platforms => :mri_19
gem 'ruby-debug', :platforms => :mri_18
# additional testing gems
gem "thin"
gem 'mocha'
gem 'bourne'
gem 'timecop'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'jasmine'
end
#gem 'mysql2'