ignore tempfiles
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
# Ignore bundler config
|
# Ignore bundler config
|
||||||
/.bundle
|
/.bundle
|
||||||
|
*.*~
|
||||||
# Ignore the default SQLite database.
|
# Ignore the default SQLite database.
|
||||||
/db/*.sqlite3
|
/db/*.sqlite3
|
||||||
/db/schema.rb
|
/db/schema.rb
|
||||||
|
|||||||
@@ -7,4 +7,7 @@ class HomeController < ApplicationController
|
|||||||
def startdev
|
def startdev
|
||||||
render 'setup_fetsite_dev'
|
render 'setup_fetsite_dev'
|
||||||
end
|
end
|
||||||
|
def linksnotimplemented
|
||||||
|
render 'links_notimplemented'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<h1>Entwicklungsprojekt</h1>
|
<h1>Entwicklungsprojekt</h1>
|
||||||
|
<%= link_to "notimplemented", home_linksnotimplemented_path %>
|
||||||
<h2>Feature List: 2013-07-17</h2>
|
<h2>Feature List: 2013-07-17</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Info zu Studien/Studienpläne</li>
|
<li>Info zu Studien/Studienpläne</li>
|
||||||
|
|||||||
@@ -58,6 +58,9 @@
|
|||||||
resources :home, :only=>[:index]
|
resources :home, :only=>[:index]
|
||||||
get 'home/dev', :controller=>:home, :action=>:dev, :as=>'home_dev'
|
get 'home/dev', :controller=>:home, :action=>:dev, :as=>'home_dev'
|
||||||
get 'home/startdev', :controller=>:home, :action=>:startdev, :as=>'home_startdev'
|
get 'home/startdev', :controller=>:home, :action=>:startdev, :as=>'home_startdev'
|
||||||
|
get 'home/linksnotimplemented', :controller=>:home, :action=>:linksnotimplemented, :as=>'home_linksnotimplemented'
|
||||||
|
|
||||||
|
|
||||||
resources :beispiele
|
resources :beispiele
|
||||||
resources :themen
|
resources :themen
|
||||||
resources :themengruppen do
|
resources :themengruppen do
|
||||||
|
|||||||
Reference in New Issue
Block a user