-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
121 lines (95 loc) · 2.73 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
# Use mysql2 as the database for Active Record
gem 'mysql2'
# Use Unicorn as the app server
platforms :ruby do
# keep this version of unicorn, because 5.5.0 seems not to be stable, update later
gem 'unicorn', '~> 5.4.1'
end
# TODO: use puma for production, modify deployment!
# Use Puma as the app server
# gem 'puma', '~> 3.0'undefined method `+' for nil:NilClass
##########################
# project relevant gems #
########################
# translation
gem 'rails-i18n', '~> 5.0.0' # For 5.0.x
# user authentication
gem 'devise' # see https://github.com/plataformatec/devise
# api authentication stuff
gem 'devise_token_auth' # https://github.com/lynndylanhurley/devise_token_auth
# extract configuration to settings
gem 'config'
# json api spec
# gem 'jsonapi-resources'
gem 'jsonapi-resources', '0.9.0.beta3'
# json serialization
gem 'fast_jsonapi'
# tree relatiions (e.g. orga-suborga)
gem 'acts_as_tree'
# state machine
gem 'aasm'
# facebook api integration
# keep api stable
gem 'koala', '~> 2.2'
# strip attributes
gem 'auto_strip_attributes', '~> 2.3.0'
# geocoding
gem 'geocoder'
# geocoding nominatim (openstreetmap)
gem 'nominatim' # see https://rubygems.org/gems/nominatim/versions/0.0.6
# integrate PhraseApp
# keep api stable
gem 'phraseapp-ruby', '~> 1.3.3'
# cron
gem 'whenever'
# image
gem 'paperclip'
# http requests
gem 'http'
group :test do
# test framework
# gem 'minitest-rails'
gem 'minitest-rails', '~> 3.0'
# for tests
gem 'factory_bot_rails'
gem 'timecop'
gem 'minitest-rails-capybara'
gem 'minitest', '5.10.2'
gem 'mocha'
gem 'shoulda-context'
# code coverage
gem 'ruby-prof'
gem 'simplecov', require: false
# request recording for tests
gem 'vcr'
# mock requests in tests, needed by vcr
gem 'webmock'
# take care of security issues
gem 'bundler-audit'
end
group :test, :development do
gem 'rails_best_practices'
gem 'bullet'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
# gem 'byebug', platform: :mri
# comfortable rails console and debugger, also useful in production:
gem 'pry'
gem 'pry-rails'
gem 'pry-byebug'
end
group :development do
# documentation
gem 'railroady'
gem 'rails-erd'
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen'
# Use Capistrano for deployment
gem 'capistrano-rails'
gem 'capistrano-rbenv'end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]