forked from zuhao/isitfedoraruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
90 lines (71 loc) · 1.65 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
80
81
82
83
84
85
86
87
88
89
source 'https://rubygems.org'
def darwin_only(require_as)
RUBY_PLATFORM.include?('darwin') && require_as
end
def linux_only(require_as)
RUBY_PLATFORM.include?('linux') && require_as
end
gem 'rails', '~> 4.0.8'
# temp fix http://stackoverflow.com/a/23525354/2137281
gem 'sprockets', '<= 2.11.0'
# Get latest fixes
gem 'rmagick', git: "https://github.com/rmagick/rmagick.git"
gem 'thor'
gem 'bootstrap-sass'
#i18n support
gem 'fast_gettext'
gem 'gettext_i18n_rails'
gem 'rails-i18n'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
gem 'haml-rails'
gem 'execjs'
gem 'bootstrap-will_paginate'
gem 'curb'
gem 'json'
gem 'nokogiri'
gem 'versionomy'
gem 'gems'
gem 'pkgwat'
gem 'bicho'
gem 'ruby-bugzilla'
gem 'text'
gem 'whenever', :require => false
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'guard-rspec'
gem 'ruby_parser'
gem 'gettext', :require => false
gem 'sqlite3'
gem 'annotate'
# Notification
gem 'rb-fsevent', require: darwin_only('rb-fsevent')
gem 'growl', require: darwin_only('growl')
gem 'rb-inotify', require: linux_only('rb-inotify')
# models/controllers visualization
gem 'railroady'
# Pry-based enhancements for the rails console
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'pry-byebug'
gem 'rubocop', require: false
gem 'rack-mini-profiler'
end
group :test do
gem 'faker'
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
gem 'rake'
gem 'coveralls'
gem 'shoulda-matchers', require: false
gem 'vcr'
gem 'webmock'
end
group :production do
gem 'pg'
gem 'unicorn'
end