forked from jerryseigle/nexmo-developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
194 lines (149 loc) · 6.16 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
source 'https://rubygems.org'
ruby '2.5.5'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.0'
gem 'webpacker'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.18'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Add clipboard for copying content
gem 'clipboard-rails'
# Icons!
gem 'octicons_helper'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Add Geocoder to get latitude and longitude for geographic places
gem 'geocoder'
# Add gmap4rails to integrate the Google Maps API
gem 'gmaps4rails'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# A fast, safe and extensible Markdown to (X)HTML parser
gem 'redcarpet', '~> 3.4.0'
# Rouge aims to a be a simple, easy-to-extend drop-in replacement for pygments.
gem 'rouge', '~> 2.0.7'
# Toolkit for processing input using filters and pipelines
gem 'banzai', '~> 0.1.2'
# Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's many features is the ability to search documents via XPath or CSS3 selectors.
gem 'nokogiri', '~> 1.8.5'
# Autoload dotenv in Rails.
gem 'dotenv-rails', groups: %i[development test]
# Ruby/ProgressBar is a text progress bar library for Ruby.
gem 'ruby-progressbar', require: false
# Ruby notifier for bugsnag.com
gem 'bugsnag'
# Extends String class or add a ColorizedString with methods to set text color, background color and text effects.
gem 'colorize'
# A simple Ruby client for the algolia.com REST API
gem 'algoliasearch'
# A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
gem 'rest-client'
# Helpers for the reCAPTCHA API
gem 'recaptcha', require: 'recaptcha/rails'
# Implements the iCalendar specification (RFC-5545) in Ruby.
gem 'icalendar', require: false
# A parser for Open API specifications
#
# If using development copy uncomment:
# gem 'oas_parser', path: '../oas_parser', require: 'oas_parser'
#
# Development & staging environments may use a dependency from a repo:
#
# gem 'oas_parser', github: 'Nexmo/oas_parser', branch: 'definition-path-methods'
#
# Otherwise use a published gem:
gem 'oas_parser', '0.18.1'
# Generate JSON strings from Ruby objects with flexible formatting options.
gem 'neatjson'
# Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc.
gem 'faker', '1.8.4', require: false
# factory_girl_rails provides integration between factory_girl and rails 3 or newer (currently just automatic factory definition loading)
gem 'factory_bot_rails', '4.8.2', require: false
# A slim ruby wrapper for posting to slack webhooks
gem 'slack-notifier', '2.3.1'
# The administration framework for Ruby on Rails.
gem 'activeadmin', '~> 1.0'
# Flexible authentication solution for Rails with Warden
gem 'devise', '>= 4.6.0'
# Simple wrapper for the GitHub API
gem 'octokit', require: false
# Cross-language UserAgent classifier library, ruby implementation
gem 'woothee'
# Create beautiful JavaScript charts with one line of Ruby
gem 'chartkick', '3.2.0'
# The simplest way to group temporal data
gem 'groupdate', '3.2.0'
# A configurable and documented Rails view helper for adding gravatars into your Rails application.
gem 'gravatar_image_tag', '1.2.0'
# FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins for Active Record.
gem 'friendly_id', '5.2.3'
# Boot large ruby/rails apps faster
gem 'bootsnap', require: false
# Convenient diffing in ruby
gem 'diffy', require: false
# Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.
gem 'rubocop'
# Volta needs a CSS autoprefixer
gem 'autoprefixer-rails'
# Titleize modifies the existing Titleize Rails functionality to better suit our needs
gem 'titleize'
# Used in our reporting rake tasks
gem 'terminal-table'
# Single line logging for production
gem 'lograge'
# Country picker for ActiveAdmin
gem 'country_select', '~> 4.0'
# gem 'nexmo-oas-renderer', path: '../nexmo-oas-renderer-sinatra', require: false
# gem 'nexmo-oas-renderer', github: 'nexmo/nexmo-oas-renderer', require: false
gem 'nexmo-oas-renderer', '~> 0.3.5', require: false
# A/B Testing
gem 'split', '~> 3.3.2', require: 'split/dashboard'
group :development, :test do
gem 'awesome_print'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'pry', require: false
gem 'rawler', git: 'https://github.com/oscardelben/rawler.git', require: false
gem 'rspec-collection_matchers'
gem 'rspec-rails', '~> 3.7'
gem 'rspec-snapshot', '~> 0.1.2'
gem 'simplecov', require: false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 3.3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'guard-livereload', '~> 2.5', require: false
gem 'guard-rspec'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Much nicer error experience, including repl
gem 'better_errors'
gem 'binding_of_caller'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# The following are dependencies of dependencies, but we require them here to
# force minimum versions due to security issues
gem 'ffi', '>= 1.9.24'
gem 'rack', '>= 2.0.6'