-
Notifications
You must be signed in to change notification settings - Fork 1
/
GemfileTravis
41 lines (37 loc) · 1.11 KB
/
GemfileTravis
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
source "http://rubygems.org"
gemspec
# jquery-rails is used by the dummy application
gem 'activeadmin', :git => "git://github.com/ikusei/active_admin.git", :require => "activeadmin"
gem 'goldencobra', :git => "git://github.com/ikusei/Goldencobra.git"
gem 'goldencobra_email_templates', :git => "git://github.com/ikusei/goldencobra_email_templates.git"
gem 'compass-rails'
gem 'coffee-rails'
gem 'capistrano', '2.14.1'
gem "rspec-rails", :group => [:test, :development] # rspec in dev so the rake tasks run properly
group :development do
gem 'thin'
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
gem 'guard-annotate'
gem 'pry'
gem 'thin'
gem 'git-pivotal'
end
group :test do
gem 'rspec'
gem 'mysql2'
gem 'cucumber'
gem 'cucumber-rails'
gem "factory_girl_rails"
gem 'database_cleaner'
gem 'capybara'
gem 'capybara-webkit'
gem 'webrat'
gem 'guard'
gem 'guard-rspec'
gem 'guard-cucumber'
gem 'guard-livereload'
gem 'rb-fsevent', :git => 'git://github.com/ttilley/rb-fsevent.git', :branch => 'pre-compiled-gem-one-off'
gem 'growl'
gem 'launchy'
gem 'email_spec'
end