-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (32 loc) · 1.02 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
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_events', :git => "ssh://git@git.ikusei.de:7999/GC/goldencobra-events.git"
gem 'goldencobra', :git => "ssh://git@git.ikusei.de:7999/GC/basis-modul.git"
gem 'compass-rails'
gem 'coffee-rails'
gem "rspec-rails", :group => [:test, :development] # rspec in dev so the rake tasks run properly
group :development do
gem 'git-pivotal'
gem 'thin'
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
gem 'guard-annotate'
gem 'pry'
end
group :test do
gem 'mysql2'
gem 'cucumber'
gem 'cucumber-rails'
gem "factory_girl_rails"
gem 'database_cleaner'
gem 'capybara'
gem 'capybara-webkit'
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'
end