Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- main

jobs:
test-rails-4-2:
test-rails-5-0:
runs-on: ubuntu-latest

services:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Run tests
run: |
bundle exec rspec spec
test-rails-5-0:
test-rails-5-1:
runs-on: ubuntu-latest
env:
PGHOST: localhost
Expand Down
32 changes: 5 additions & 27 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,20 @@ ruby '2.5.8'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
if next?
gem 'rails', '~> 5.0.1'
gem 'rails', '~> 5.1.0'
else
gem 'rails', '~> 4.2.1'
gem 'rails', '~> 5.0.1'
end

# Use sqlite3 as the database for Active Record

# Use SCSS for stylesheets
if next?
gem 'sass-rails'
else
gem 'sass-rails', '~> 4.0.3'
end
gem 'sass-rails'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
if next?
gem 'coffee-rails'
else
gem 'coffee-rails', '~> 4.0.0'
end
gem 'coffee-rails'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
Expand All @@ -52,12 +44,7 @@ gem 'sdoc', '~> 0.4.0', group: :doc

gem 'holidays'

if next?
gem 'json'
else
gem 'json', '~> 1.8.6'
end

gem 'json'

group :production do
gem 'pg', '~> 0.20.0'
Expand Down Expand Up @@ -87,12 +74,3 @@ group :development, :test do
gem 'faraday'
gem "byebug"
end

# Use unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Use debugger
# gem 'debugger', group: [:development, :test]
Loading