2014-05-26 21:05:33 +02:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2018-04-10 17:25:46 +02:00
|
|
|
ruby '2.4.1'
|
|
|
|
|
2018-04-10 17:39:03 +02:00
|
|
|
gem 'rails'
|
2018-04-10 17:25:46 +02:00
|
|
|
gem 'sqlite3'
|
|
|
|
gem 'puma', '~> 3.11'
|
2018-04-10 17:39:03 +02:00
|
|
|
gem 'sass-rails'
|
|
|
|
gem 'uglifier'
|
|
|
|
gem "haml-rails"
|
|
|
|
gem "susy" , "2.2.12"
|
2018-04-10 17:25:46 +02:00
|
|
|
|
2018-04-10 17:42:22 +02:00
|
|
|
gem 'high_voltage'
|
2018-04-10 18:50:07 +02:00
|
|
|
gem "kramdown"
|
|
|
|
gem "maruku"
|
2018-04-10 17:25:46 +02:00
|
|
|
group :development, :test do
|
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
|
|
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
2018-04-10 17:42:22 +02:00
|
|
|
gem 'rspec-rails'
|
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
|
|
|
gem 'capybara'
|
|
|
|
gem 'capybara-screenshot'
|
2018-04-10 17:25:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
|
|
gem 'web-console', '>= 3.3.0'
|
|
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
|
|
# 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', '~> 2.0.0'
|
|
|
|
end
|