Skip to content

Commit 0875a0c

Browse files
committed
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+

Gemfile.lock

Lines changed: 166 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
PATH
2+
remote: /Users/kencollins/Repositories/activerecord-sqlserver-adapter
3+
specs:
4+
activerecord-sqlserver-adapter (4.2.1)
5+
activerecord (~> 4.2.0)
6+
7+
PATH
8+
remote: /Users/kencollins/Repositories/tiny_tds
9+
specs:
10+
tiny_tds (0.6.3)
11+
12+
GEM
13+
remote: https://rubygems.org/
14+
specs:
15+
actionmailer (4.2.0)
16+
actionpack (= 4.2.0)
17+
actionview (= 4.2.0)
18+
activejob (= 4.2.0)
19+
mail (~> 2.5, >= 2.5.4)
20+
rails-dom-testing (~> 1.0, >= 1.0.5)
21+
actionpack (4.2.0)
22+
actionview (= 4.2.0)
23+
activesupport (= 4.2.0)
24+
rack (~> 1.6.0)
25+
rack-test (~> 0.6.2)
26+
rails-dom-testing (~> 1.0, >= 1.0.5)
27+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
28+
actionview (4.2.0)
29+
activesupport (= 4.2.0)
30+
builder (~> 3.1)
31+
erubis (~> 2.7.0)
32+
rails-dom-testing (~> 1.0, >= 1.0.5)
33+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
34+
activejob (4.2.0)
35+
activesupport (= 4.2.0)
36+
globalid (>= 0.3.0)
37+
activemodel (4.2.0)
38+
activesupport (= 4.2.0)
39+
builder (~> 3.1)
40+
activerecord (4.2.0)
41+
activemodel (= 4.2.0)
42+
activesupport (= 4.2.0)
43+
arel (~> 6.0)
44+
activesupport (4.2.0)
45+
i18n (~> 0.7)
46+
json (~> 1.7, >= 1.7.7)
47+
minitest (~> 5.1)
48+
thread_safe (~> 0.3, >= 0.3.4)
49+
tzinfo (~> 1.1)
50+
arel (6.0.0)
51+
binding_of_caller (0.7.2)
52+
debug_inspector (>= 0.0.1)
53+
builder (3.2.2)
54+
byebug (3.5.1)
55+
columnize (~> 0.8)
56+
debugger-linecache (~> 1.2)
57+
slop (~> 3.6)
58+
coffee-rails (4.1.0)
59+
coffee-script (>= 2.2.0)
60+
railties (>= 4.0.0, < 5.0)
61+
coffee-script (2.3.0)
62+
coffee-script-source
63+
execjs
64+
coffee-script-source (1.9.0)
65+
columnize (0.9.0)
66+
debug_inspector (0.0.2)
67+
debugger-linecache (1.2.0)
68+
erubis (2.7.0)
69+
execjs (2.2.2)
70+
globalid (0.3.0)
71+
activesupport (>= 4.1.0)
72+
hike (1.2.3)
73+
i18n (0.7.0)
74+
jbuilder (2.2.6)
75+
activesupport (>= 3.0.0, < 5)
76+
multi_json (~> 1.2)
77+
jquery-rails (4.0.3)
78+
rails-dom-testing (~> 1.0)
79+
railties (>= 4.2.0)
80+
thor (>= 0.14, < 2.0)
81+
json (1.8.2)
82+
loofah (2.0.1)
83+
nokogiri (>= 1.5.9)
84+
mail (2.6.3)
85+
mime-types (>= 1.16, < 3)
86+
mime-types (2.4.3)
87+
mini_portile (0.6.2)
88+
minitest (5.5.1)
89+
multi_json (1.10.1)
90+
nokogiri (1.6.6.2)
91+
mini_portile (~> 0.6.0)
92+
rack (1.6.0)
93+
rack-test (0.6.3)
94+
rack (>= 1.0)
95+
rails (4.2.0)
96+
actionmailer (= 4.2.0)
97+
actionpack (= 4.2.0)
98+
actionview (= 4.2.0)
99+
activejob (= 4.2.0)
100+
activemodel (= 4.2.0)
101+
activerecord (= 4.2.0)
102+
activesupport (= 4.2.0)
103+
bundler (>= 1.3.0, < 2.0)
104+
railties (= 4.2.0)
105+
sprockets-rails
106+
rails-deprecated_sanitizer (1.0.3)
107+
activesupport (>= 4.2.0.alpha)
108+
rails-dom-testing (1.0.5)
109+
activesupport (>= 4.2.0.beta, < 5.0)
110+
nokogiri (~> 1.6.0)
111+
rails-deprecated_sanitizer (>= 1.0.1)
112+
rails-html-sanitizer (1.0.1)
113+
loofah (~> 2.0)
114+
railties (4.2.0)
115+
actionpack (= 4.2.0)
116+
activesupport (= 4.2.0)
117+
rake (>= 0.8.7)
118+
thor (>= 0.18.1, < 2.0)
119+
rake (10.4.2)
120+
sass (3.4.11)
121+
sass-rails (5.0.1)
122+
railties (>= 4.0.0, < 5.0)
123+
sass (~> 3.1)
124+
sprockets (>= 2.8, < 4.0)
125+
sprockets-rails (>= 2.0, < 4.0)
126+
tilt (~> 1.1)
127+
slop (3.6.0)
128+
spring (1.2.0)
129+
sprockets (2.12.3)
130+
hike (~> 1.2)
131+
multi_json (~> 1.0)
132+
rack (~> 1.0)
133+
tilt (~> 1.1, != 1.3.0)
134+
sprockets-rails (2.2.4)
135+
actionpack (>= 3.0)
136+
activesupport (>= 3.0)
137+
sprockets (>= 2.8, < 4.0)
138+
thor (0.19.1)
139+
thread_safe (0.3.4)
140+
tilt (1.4.1)
141+
tzinfo (1.2.2)
142+
thread_safe (~> 0.1)
143+
uglifier (2.7.0)
144+
execjs (>= 0.3.0)
145+
json (>= 1.8.0)
146+
web-console (2.0.0)
147+
activemodel (~> 4.0)
148+
binding_of_caller (>= 0.7.2)
149+
railties (~> 4.0)
150+
sprockets-rails (>= 2.0, < 4.0)
151+
152+
PLATFORMS
153+
ruby
154+
155+
DEPENDENCIES
156+
activerecord-sqlserver-adapter!
157+
byebug
158+
coffee-rails (~> 4.1.0)
159+
jbuilder (~> 2.0)
160+
jquery-rails
161+
rails (= 4.2.0)
162+
sass-rails (~> 5.0)
163+
spring
164+
tiny_tds!
165+
uglifier (>= 1.3.0)
166+
web-console (~> 2.0)

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
Rails.application.load_tasks

app/assets/images/.keep

Whitespace-only changes.

app/assets/javascripts/application.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// This is a manifest file that'll be compiled into application.js, which will include all the files
2+
// listed below.
3+
//
4+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6+
//
7+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8+
// compiled file.
9+
//
10+
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11+
// about supported directives.
12+
//
13+
//= require jquery
14+
//= require jquery_ujs
15+
//= require turbolinks
16+
//= require_tree .
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any styles
10+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11+
* file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class ApplicationController < ActionController::Base
2+
# Prevent CSRF attacks by raising an exception.
3+
# For APIs, you may want to use :null_session instead.
4+
protect_from_forgery with: :exception
5+
end

app/controllers/concerns/.keep

Whitespace-only changes.

app/helpers/application_helper.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ApplicationHelper
2+
end

0 commit comments

Comments
 (0)