Skip to content
This repository has been archived by the owner on Oct 24, 2019. It is now read-only.

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
frocher committed Nov 2, 2014
0 parents commit 308e76c
Show file tree
Hide file tree
Showing 337 changed files with 35,395 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .gitignore
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
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
97 changes: 97 additions & 0 deletions Gemfile
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

Loading

0 comments on commit 308e76c

Please sign in to comment.