Skip to content
This repository was archived by the owner on Jun 6, 2022. It is now read-only.
Open
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ repos/*
# RSpec failure-file
spec/.failures.txt
.idea/

.env
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ruby 2.7.6
nodejs 16.14.0
32 changes: 18 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
source 'https://rubygems.org'

gem "dotenv-rails", '~> 2.7.6', groups: [:development, :test] # should be the first dependency loaded

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.1'
gem 'rails', '~> 5'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
gem 'sass-rails'

# Use Bootstrap for styling
gem 'bootstrap-sass', '~> 3.3.1'
Expand All @@ -16,13 +18,7 @@ gem 'font-awesome-rails'
gem 'uglifier', '>= 1.3.0'

# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'

# Airbrake
gem 'airbrake'

# Coveralls!
gem 'coveralls', require: false
gem 'coffee-rails'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
Expand All @@ -33,7 +29,7 @@ gem 'jquery-rails'
gem 'turbolinks'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'jbuilder'

# Build google charts
gem 'google_visualr'
Expand All @@ -48,16 +44,20 @@ end

group :test, :development do
gem 'pry-byebug'
gem 'sqlite3'
end

group :test do
gem 'rack-test'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'rspec-rails', '~> 5.0.0'
gem 'factory_bot_rails'
gem 'faker'
end

group :development do
# Web console
gem 'web-console'

gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-passenger'
Expand Down Expand Up @@ -104,8 +104,8 @@ gem 'friendly_id'
gem 'jquery-turbolinks'

# Use datenfisch (https://github.com/Iasoon/datenfisch.git)
gem 'datenfisch', git: 'git://github.com/iasoon/datenfisch-sucks.git',
ref: '4f39bb3686b5facfb2552fe186d568ce3d259993'
# gem 'datenfisch', path: "../datenfisch-lives"
gem 'datenfisch', git: 'git@github.com:ZeusWPI/datenfisch-lives.git'

# Use jQuery plugin datatables (https://github.com/DataTables/DataTables)
gem 'jquery-datatables-rails'
Expand All @@ -120,3 +120,7 @@ gem 'high_voltage'

# Use HTTParty for easier HTTP requests
gem 'httparty'

gem 'bootsnap'

gem 'listen'
Loading