Initial commit
This commit is contained in:
commit
2f0316d05f
12 changed files with 426 additions and 0 deletions
29
Gemfile
Normal file
29
Gemfile
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
source 'https://rubygems.org'
|
||||
|
||||
gem 'roda'
|
||||
gem 'rake'
|
||||
gem 'tilt'
|
||||
gem 'erubi'
|
||||
gem 'sequel'
|
||||
|
||||
# change to gunicorn or passenger if you prefer:
|
||||
gem 'puma'
|
||||
|
||||
# change to whatever database you plan to use
|
||||
gem 'sqlite3'
|
||||
# gem 'pg' # will also want gem 'sequel-pg'
|
||||
# gem 'mysql2'
|
||||
|
||||
group :development, :test do
|
||||
gem "rerun"
|
||||
end
|
||||
|
||||
group :test do
|
||||
gem 'capybara'
|
||||
gem 'minitest'
|
||||
gem 'minitest-reporters'
|
||||
end
|
||||
|
||||
group :development do
|
||||
gem "rubocop"
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue