Skip to content

Commit 0875a0c

Browse files
committedFeb 5, 2015
Initial commit.
1 parent 830381e commit 0875a0c

Some content is hidden

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

62 files changed

+1002
-0
lines changed
 

‎.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
!/log/.keep
17+
/tmp

‎Gemfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '4.2.0'
4+
gem 'sass-rails', '~> 5.0'
5+
gem 'uglifier', '>= 1.3.0'
6+
gem 'coffee-rails', '~> 4.1.0'
7+
gem 'jquery-rails'
8+
gem 'jbuilder', '~> 2.0'
9+
10+
gem 'activerecord-sqlserver-adapter', path: '/Users/kencollins/Repositories/activerecord-sqlserver-adapter'
11+
gem 'tiny_tds', path: '/Users/kencollins/Repositories/tiny_tds'
12+
13+
group :development, :test do
14+
gem 'byebug'
15+
gem 'web-console', '~> 2.0'
16+
gem 'spring'
17+
end
18+

0 commit comments

Comments
 (0)
Please sign in to comment.