summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-02-27 17:56:31 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-02-27 17:56:31 -0500
commit8cb882e53dec7c97ceca0438f9bfdce050766109 (patch)
tree1f24859bc5aa571c80e37ccda5a9df86d05f6d8e
parent1b0022eca5cfbab8bfee72030d45443bf9d44af7 (diff)
Booted the strap
-rw-r--r--Gemfile2
-rw-r--r--Gemfile.lock3
-rw-r--r--config/routes.rb14
-rwxr-xr-xgenerate.sh5
4 files changed, 23 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 630e133..f4e5b09 100644
--- a/Gemfile
+++ b/Gemfile
@@ -3,6 +3,8 @@ source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.2'
+gem 'bootstrap-sass'
+
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
diff --git a/Gemfile.lock b/Gemfile.lock
index 564ce87..75d27b8 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -27,6 +27,8 @@ GEM
tzinfo (~> 0.3.37)
arel (4.0.2)
atomic (1.1.14)
+ bootstrap-sass (3.1.1.0)
+ sass (~> 3.2)
builder (3.1.4)
coffee-rails (4.0.1)
coffee-script (>= 2.2.0)
@@ -113,6 +115,7 @@ PLATFORMS
ruby
DEPENDENCIES
+ bootstrap-sass
coffee-rails (~> 4.0.0)
jbuilder (~> 1.2)
jquery-rails
diff --git a/config/routes.rb b/config/routes.rb
index 876667f..f13c891 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,4 +1,18 @@
Leaguer::Application.routes.draw do
+ resources :pms
+
+ resources :alerts
+
+ resources :users
+
+ resources :teams
+
+ resources :matches
+
+ resources :tournaments
+
+ resources :servers
+
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".
diff --git a/generate.sh b/generate.sh
index 666869c..36a74ef 100755
--- a/generate.sh
+++ b/generate.sh
@@ -1,6 +1,9 @@
#!/bin/bash
-#
+# The generate.sh bash file is used to generate all of the necessary .rb files to run the website
+#
+
+
# To Start Rails Server:
# bundle exec rails server
#