Skip to content

Commit

Permalink
Merge 2ecbab2 into 479159a
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Jun 23, 2014
2 parents 479159a + 2ecbab2 commit 21134ab
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,25 @@ module OneFile
end
end

module Controllers::Home
include OneFile::Controller
module Controllers
module Home
include Lotus::Controller

action 'Index' do
def call(params)
action 'Index' do
def call(params)
end
end
end
end

module Views::Home
class Index
include OneFile::View
module Views
module Home
class Index
include Lotus::View

def render
'Hello'
def render
'Hello'
end
end
end
end
Expand Down

0 comments on commit 21134ab

Please sign in to comment.