This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
forked from nilbus/pinewood-derby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (47 loc) · 1.4 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2.0'
gem 'thin-rails'
gem 'sqlite3'
gem 'faye-rails', '~> 2.0'
gem 'foreman'
gem 'serialport'
gem 'bootstrap-sass', '~> 2.2.1.1'
gem 'celluloid', require: 'celluloid/autostart'
gem 'celluloid-io'
gem 'celluloid-io-serialport', require: 'celluloid/io/serial_port', :git=>'https://github.com/josephtate/celluloid-io-serialport.git'
gem 'lodash-rails'
gem 'nokogiri', '>= 1.10.8'
group :development do
gem 'pry-rails'
gem 'pry-byebug'
gem 'faker'
gem 'foreman-export-initd'
end
group :test, :development do
gem 'database_cleaner'
gem 'guard-rspec'
gem 'rspec-rails', '~> 3.0'
gem 'spring-commands-rspec'
gem 'teaspoon'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sprockets-rails'
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder'
# Deploy with Capistrano
# gem 'capistrano', group: :development
# To use debugger
# gem 'debugger'