This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
152 lines (110 loc) · 3.15 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
source 'https://rubygems.org'
ruby '3.1.4'
gem 'rails', '~> 6.1.0'
# Use postgresql as the database for Active Record
gem 'pg', '~> 1.0'
# Use SCSS for stylesheets
gem 'sassc-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 5.0'
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 4.3'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.10'
# Automatically add rel="noopener noreferrer" to every link with target="_blank"
gem 'safe_target_blank'
# Create filters easily with scopes
gem 'has_scope'
# Annotate database fields to model files
gem 'annotate', '>= 2.6.1'
# Secure Password Hashes
gem 'bcrypt', '~> 3.1.13'
# Ruby linting
gem 'rubocop'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 2.4.0', require: false
end
group :development, :test do
gem 'rspec-rails', '~> 4.0'
gem 'rspec-mocks'
gem 'rake'
gem 'letter_opener'
gem 'factory_bot_rails', '~> 6.1'
gem 'capybara'
gem 'rails_log_stdout', git: 'https://github.com/heroku/rails_log_stdout.git'
gem 'byebug'
end
gem 'web-console', group: :development
gem 'simplecov', group: :test, require: nil
# basic layouting
# gem 'twitter-bootstrap-rails'
# bootstrap 3
gem 'bootstrap-rails-engine'
# open ID gem for user activation
gem 'ruby-openid'
gem 'open_id_authentication'
# authorizations in one place
gem 'cancancan', '~> 3.1'
# simple http requests
gem 'rest-client'
# command line parsing for project registration
gem 'highline'
# for picture Upload
gem 'kt-paperclip'
# for cron jobs
gem 'whenever'
# add some more UI controls
gem 'jquery-ui-rails'
# jquery plugin for rating stars
gem 'jquery-raty-rails', git: 'https://github.com/tfantina/jquery-raty-rails.git'
# load jQuery fast without refresh
gem 'jquery-turbolinks'
# a Helper to validate dates
gem 'validates_timeliness'
# replacement for glyphicons
gem 'font-awesome-rails'
# pagination
gem 'will_paginate', '~> 3.3'
# styles pagination with bootstrap
gem 'will_paginate-bootstrap'
gem 'active_enum', git: 'https://github.com/adzap/active_enum.git'
gem 'jquery-star-rating-rails'
gem 'simple_form'
# Translatable ActiveRecord attributes
gem 'traco'
# WYSIWYG Text Editor
gem 'tinymce-rails', '~> 5.6'
gem 'tinymce-rails-langs', '~> 5.20200505'
gem 'sanitize'
# Birthdate validation
gem 'chronic', '~> 0.10.2'
group :test do
gem 'email_spec'
gem 'database_cleaner'
gem 'selenium-webdriver'
gem 'poltergeist'
gem 'rails-controller-testing'
end
# flags
gem 'famfamfam_flags_rails'
# saves config settings in a database
gem 'configurable_engine'
# asset handling for heroku
gem 'rails_serve_static_assets'
# error reporting with sentry
gem 'sentry-raven'
# deployment with nginx and unicorn
gem 'unicorn'
gem 'capistrano', '~> 3.13'
gem 'capistrano-rails', '~> 1.6'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
# Gems needed explicitly after Ruby 3.1.4 upgrade
gem "matrix", "~> 0.4.2"
gem "net-ftp", "~> 0.2.0"
gem "net-smtp", "~> 0.4.0"
gem "webrick", "~> 1.8"
gem "phantomjs", "~> 2.1", :require => 'phantomjs/poltergeist'