mirror of
https://github.com/plashchynski/crono.git
synced 2026-01-11 13:00:26 +01:00
25 lines
551 B
Ruby
25 lines
551 B
Ruby
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
# Specify your gem's dependencies in crono.gemspec.
|
|
gemspec
|
|
|
|
group :development, :test do
|
|
# gem 'activerecord'
|
|
# gem 'actionpack' # action_controller, action_view
|
|
# gem 'sprockets'
|
|
|
|
gem 'byebug'
|
|
gem 'combustion', '~> 1.3'
|
|
gem 'daemons'
|
|
gem 'rack-test'
|
|
gem 'rake', '>= 10.0'
|
|
gem 'rspec', '>= 3.0'
|
|
gem 'rspec-rails', '>= 4.0'
|
|
gem 'sqlite3'
|
|
gem 'timecop', '>= 0.7'
|
|
end
|
|
|
|
# To use a debugger
|
|
# gem 'byebug', group: [:development, :test]
|