forked from rosa-abf/rosa-build
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
104 lines (85 loc) · 2.01 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
source 'https://rubygems.org'
gem 'rails'
# gem 'activeadmin', git:'https://github.com/activeadmin/activeadmin.git'
gem 'pg'
gem 'schema_plus'
########
gem 'devise', git: 'https://github.com/plataformatec/devise' #, ref: '88e9a85'
gem 'omniauth-github'
gem 'pundit'
gem 'rbtrace'
gem 'sentry-raven'
gem 'paperclip'
gem 'sinatra', :require => nil
gem 'sidekiq'
gem 'kiqit', :git => 'https://github.com/DuratarskeyK/kiqit.git'
gem 'sidekiq-scheduler', '~> 2.0'
gem 'sidekiq-failures'
gem 'russian'
gem 'state_machines-activerecord'
gem 'redis-rails'
gem 'jbuilder'
gem 'sprockets'
gem 'will_paginate'
gem 'meta-tags', require: 'meta_tags'
gem 'haml-rails'
gem 'ruby-haml-js'
gem 'slim'
gem 'simple_form', '3.1.0.rc2'
gem 'friendly_id'
gem 'rack-throttle', '~> 0.3.0'
gem 'rest-client'
gem 'ohm', '~> 1.3.2' # Ohm 2 breaks the compatibility with previous versions.
gem 'ohm-expire', '~> 0.1.3'
gem 'pygments.rb'
gem 'attr_encrypted'
# AngularJS related stuff
gem 'angular-rails-templates'
gem 'ng-rails-csrf'
gem 'angular-i18n'
gem 'js-routes'
gem 'soundmanager-rails'
gem 'ngannotate-rails'
gem 'time_diff'
gem 'sass-rails'
gem 'coffee-rails'
gem 'compass-rails'
gem 'uglifier'
gem 'rails-assets-notifyjs', '0.4.2', path: 'vendor/gems/rails-assets-notifyjs-0.4.2'
gem 'rack-utf8_sanitizer'
gem 'redis-semaphore'
gem 'kaminari'
#github api
gem "octokit", "~> 4.0"
gem 'faraday-http-cache'
group :production do
gem 'puma'
end
group :development do
gem 'mailcatcher' # 'letter_opener'
gem 'rails3-generators'
gem 'hirb'
gem 'shotgun'
gem 'state_machines-graphviz'
# Better Errors & RailsPanel
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'localeapp'
#gem 'ruby-dbus' if RUBY_PLATFORM =~ /linux/i # Error at deploy
gem 'rack-mini-profiler', require: false
end
group :development, :test do
gem 'rspec-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'rr'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'mock_redis'
gem 'webmock'
gem 'rake'
gem 'test_after_commit'
gem 'timecop'
end