Skip to content
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
34 changes: 25 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,31 @@
# See http://help.github.com/ignore-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
# /api
# ----

# Ignore bundler config
/.bundle
/api/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/api/db/*.sqlite3

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
/api/log/*.log
/api/tmp

# /frontend
# ---------

# compiled output
/frontend/dist
/frontend/tmp

# dependencies
/frontend/node_modules
/frontend/bower_components

# misc
/frontend/.sass-cache
/frontend/connect.lock
/frontend/coverage/*
/frontend/libpeerconnection.log
/frontend/npm-debug.log
/frontend/testem.log
38 changes: 0 additions & 38 deletions Gemfile

This file was deleted.

195 changes: 0 additions & 195 deletions Gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-2014 Sean Omlor
Copyright (c) 2013-2015 Sean Omlor

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
2 changes: 2 additions & 0 deletions api/.rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
25 changes: 25 additions & 0 deletions api/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
source 'https://rubygems.org'

gem 'rails', '4.2.0'
ruby '2.2.0'

gem 'active_model_serializers', '~> 0.8.0'
gem 'acts_as_list'
gem 'bcrypt-ruby', '~> 3.1.0'
gem 'thin'

group :development, :test do
gem 'annotate'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'letter_opener'
gem 'pry-byebug'
gem 'pry-rails'
gem 'rspec-rails'
gem 'shoulda-matchers', '~> 2.8.0'
gem 'sqlite3'
end

group :production, :staging do
gem 'pg'
end
Loading