This repository has been archived by the owner on Oct 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 308e76c
Showing
337 changed files
with
35,395 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# 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' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore specific config files | ||
/config/database.yml | ||
/config/olb.yml | ||
/config/puma.rb | ||
|
||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/*.log | ||
/tmp | ||
|
||
# Ignore uploaded files | ||
/public/system | ||
|
||
# Ignore cloud9 tmp files | ||
/.c9 | ||
|
||
# Ignore secret token file | ||
/.secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--color | ||
--require spec_helper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '4.1.0' | ||
|
||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
gem 'mysql2' | ||
|
||
# settings | ||
gem 'settingslogic' | ||
|
||
# Use SCSS for stylesheets | ||
gem 'sass-rails', '~> 4.0.2' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.0.0' | ||
gem 'select2-rails' | ||
gem 'bootstrap-sass' | ||
gem 'font-awesome-rails' | ||
|
||
# Use jquery as the JavaScript library | ||
gem 'jquery-rails' | ||
|
||
# Auth | ||
gem 'devise' | ||
gem 'six' | ||
gem 'omniauth' | ||
gem 'omniauth-facebook' | ||
gem 'omniauth-google-oauth2' | ||
gem 'omniauth-github' | ||
|
||
# Pagination | ||
gem 'kaminari' | ||
|
||
# Template engine | ||
gem 'slim' | ||
|
||
# breadcrumbs on pages | ||
gem "breadcrumbs_on_rails" | ||
|
||
# tags on tasks | ||
gem 'acts-as-taggable-on' | ||
|
||
# Files attachments | ||
gem "paperclip" | ||
gem "paperclip-meta" | ||
|
||
# Versioning | ||
gem 'paper_trail', '~> 3.0.5' | ||
|
||
# State machine | ||
gem 'state_machine' | ||
|
||
# Date manipulation and number | ||
gem 'chronic' | ||
gem 'numerizer' | ||
|
||
# Cron jobs | ||
gem 'whenever', :require => false | ||
|
||
# xslsx exports | ||
gem 'axlsx_rails' | ||
|
||
# Keyboard shortcuts | ||
gem 'mousetrap-rails' | ||
|
||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
gem 'jbuilder', '~> 1.2' | ||
gem 'grape' | ||
gem 'grape-entity' | ||
gem 'gon' | ||
|
||
gem 'tzinfo-data', platforms: [:mingw, :mswin] | ||
|
||
group :doc do | ||
# bundle exec rake doc:rails generates the API under doc/api. | ||
gem 'sdoc', require: false | ||
end | ||
|
||
group :test, :development do | ||
gem 'rspec-rails' | ||
gem 'capybara' | ||
gem 'factory_girl_rails' | ||
gem 'faker' | ||
gem 'minitest', '~> 5.3.0' | ||
end | ||
|
||
group :test do | ||
gem 'simplecov', require: false | ||
gem 'shoulda-matchers', require: false | ||
end | ||
|
||
# Use puma as the app server | ||
gem 'puma' | ||
|
||
gem 'annotate', "~> 2.6.5", group: :development | ||
|
Oops, something went wrong.