BigW Consortium Gitlab

Gemfile 1.14 KB
Newer Older
1
source "http://rubygems.org"
gitlabhq committed
2

3
gem "rails", "3.1.1"
gitlabhq committed
4

5 6 7 8 9 10 11
gem "sqlite3"
gem "devise", "1.5.0"
gem "stamp"
gem "kaminari"
gem "haml-rails"
gem "jquery-rails"
gem "grit", :git => "https://github.com/gitlabhq/grit.git"
12
gem "gitolite", :git => "https://github.com/gitlabhq/gitolite-client.git"
gitlabhq committed
13
gem "carrierwave"
14 15 16 17
gem "six"
gem "therubyracer"
gem "faker"
gem "seed-fu", "~> 2.1.0"
18
gem "pygments.rb", "0.2.3"
Valera Sizov committed
19
gem "thin"
Valera Sizov committed
20
gem "git"
VSizov committed
21
gem "acts_as_list"
22 23 24 25
gem "rdiscount"
gem "acts-as-taggable-on", "~> 2.1.0"
gem "drapper"
gem "rchardet19", "~> 1.3.5"
26

gitlabhq committed
27
group :assets do
28 29 30
  gem "sass-rails",   "~> 3.1.0"
  gem "coffee-rails", "~> 3.1.0"
  gem "uglifier"
gitlabhq committed
31 32
end

Nihad Abbasov committed
33
group :development do
34 35 36
  gem "letter_opener"
  gem "rails-footnotes", "~> 3.7.5"
  gem "annotate", :git => "https://github.com/ctran/annotate_models.git"
gitlabhq committed
37 38 39
end

group :development, :test do
40 41 42 43
  gem "rspec-rails"
  gem "capybara"
  gem "autotest"
  gem "autotest-rails"
44
  unless ENV["CI"]
45
    gem "ruby-debug19", :require => "ruby-debug"
46
  end
47 48 49
  gem "awesome_print"
  gem "database_cleaner"
  gem "launchy"
gitlabhq committed
50 51 52
end

group :test do
53 54
  gem "turn", :require => false
  gem "simplecov", :require => false
55
  gem "shoulda", "~> 3.0.0.beta2"
gitlabhq committed
56
end