Skip to content

Commit 56bb369

Browse files
committedOct 13, 2015
removing current user id from login
1 parent 8cab6ee commit 56bb369

File tree

143 files changed

+40524
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+40524
-0
lines changed
 

‎.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore all logfiles and tempfiles.
11+
/log/*
12+
!/log/.keep
13+
/tmp
14+
15+
# Ignore env vars
16+
.env
17+
18+
# Ignore schema
19+
/db/schema.rb

‎Gemfile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '~> 4.1.0'
4+
gem 'mysql2', '~> 0.3.18'
5+
gem 'sass-rails', '~> 5.0.1'
6+
gem 'uglifier', '>= 1.3.0'
7+
gem 'coffee-rails', '~> 4.1.0'
8+
gem 'jquery-rails', '~> 3.0.4'
9+
gem 'turbolinks'
10+
gem 'jbuilder', '~> 2.0'
11+
gem 'sdoc', '~> 0.4.0', group: :doc
12+
gem 'bootstrap-sass', '~> 3.3.4.1'
13+
group :development, :test do
14+
gem 'byebug'
15+
gem 'web-console', '~> 2.0'
16+
gem 'dotenv-rails'
17+
end
18+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
19+
20+
# SQL Server Adapter
21+
gem 'tiny_tds'
22+
gem 'activerecord-sqlserver-adapter', '~> 4.1.0'
23+
24+
gem 'pry-rails', group: :development
25+
gem 'momentjs-rails', '>= 2.9.0'
26+
gem 'bootstrap3-datetimepicker-rails', '~> 4.14.30'
27+
gem 'pg', group: :production
28+
gem 'devise'
29+
gem 'email_validator', require: 'email_validator/strict'

0 commit comments

Comments
 (0)
Please sign in to comment.