Skip to content

Commit

Permalink
initial open source commit 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
philippks committed Jun 1, 2018
0 parents commit e241b16
Show file tree
Hide file tree
Showing 574 changed files with 19,190 additions and 0 deletions.
88 changes: 88 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
#----------------------------------------------------------------------------
# Ignore these files when commiting to a git repository.
#
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# The original version of this file is found here:
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt
#
# Corrections? Improvements? Create a GitHub issue:
# http://github.com/RailsApps/rails-composer/issues
#----------------------------------------------------------------------------

# bundler state
/.bundle
/vendor/bundle/
/vendor/ruby/

# minimal Rails specific artifacts
db/*.sqlite3
/db/*.sqlite3-journal
/log/*
/tmp/*

# various artifacts
**.war
*.rbc
*.sassc
.redcar/
.sass-cache
/config/config.yml
/coverage.data
/coverage/
/db/*.javadb/
/db/*.sqlite3
/doc/api/
/doc/app/
/doc/features.html
/doc/specs.html
/public/cache
/public/stylesheets/compiled
/public/system/*
/spec/tmp/*
/cache
/capybara*
/capybara-*.html
/gems
/specifications
rerun.txt
pickle-email-*.html
.zeus.sock
vendor/assets/bower_components/
*.log
/public/assets
/storage/invoices/*.pdf

# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global
#
# Here are some files you may want to ignore globally:

# scm revert files
**.orig

# Mac finder artifacts
.DS_Store

# Netbeans project directory
/nbproject/

# RubyMine project files
.idea

# Textmate project files
/*.tmproj

# vim artifacts
**.swp

# Environment files that may contain sensitive data
.env
.powenv

examples.txt

!.keep
.byebug_history
node_modules/
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.5.1
72 changes: 72 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
source 'https://rubygems.org'
ruby '2.5.1'

gem 'rails', '~> 5.2'
gem 'rails-i18n'
gem 'sass-rails'
gem 'coffee-rails'
gem 'jbuilder'
gem 'pg'
gem 'simple_form'
gem 'cancancan'
gem 'classy_cancan'
gem 'json'
gem 'responders'
gem 'money-rails'
gem 'jquery-rails'
gem 'odf-report', git: 'https://github.com/philippks/odf-report.git'
gem 'libreconv'
gem 'acts_as_list'
gem 'global'
gem 'aasm'
gem 'enumerize'
gem 'combine_pdf'
gem 'flutie'
gem 'simple-navigation'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
gem 'uglifier'
gem 'select2-rails'
gem 'font-awesome-rails'
gem 'airbrake'
gem 'devise'
gem 'dotenv-rails'
gem 'jwt'

# to be removed
gem 'will_paginate-bootstrap'
gem 'x-editable-rails'

group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
end

group :development, :test do
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'i18n-tasks'
gem 'awesome_print'
gem 'byebug'
gem 'bullet'
gem 'puma'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'pronto'
gem 'pronto-rubocop', require: false
end

group :test do
gem 'capybara'
gem 'capybara-selenium'
gem 'chromedriver-helper'
gem 'database_cleaner'
gem 'capybara-select2', git: 'https://github.com/philippks/capybara-select2.git'
gem 'shoulda-matchers'
gem 'timecop'
gem 'rails-controller-testing'
gem 'launchy', require: false
end
Loading

0 comments on commit e241b16

Please sign in to comment.