Skip to content

Commit 6e00354

Browse files
authored
Merge pull request revel#1201 from revel/master
Pull changes from master into develop branch
2 parents 784326c + 4043cb7 commit 6e00354

File tree

4 files changed

+11
-102
lines changed

4 files changed

+11
-102
lines changed

README.md

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,24 @@
44

55
A high productivity, full-stack web framework for the [Go language](http://www.golang.org).
66

7-
Current Version: 0.18-dev (2017-07-11)
7+
Current Version: 0.18.0-dev (2017-07-11)
88

9-
**As of Revel 0.15.0, Go 1.7+ is required.**
9+
**As of Revel 0.15.0, Go 1.6+ is required.**
1010

1111
## Quick Start
1212

13-
Install revel framework:
13+
Enter Go's path (format varies based on OS):
14+
15+
cd $GOPATH
16+
17+
Install Revel:
1418

1519
go get -u github.com/revel/cmd/revel
1620

17-
Create a new app and run it:
21+
Create & Run your app:
1822

19-
revel new github.com/myaccount/my-app
20-
revel run github.com/myaccount/my-app
23+
revel new my-app
24+
revel run my-app
2125

2226
Open http://localhost:9000 in your browser and you should see "It works!"
2327

@@ -37,19 +41,3 @@ Open http://localhost:9000 in your browser and you should see "It works!"
3741

3842
* [Contributing Code Guidelines](https://github.com/revel/revel/blob/master/CONTRIBUTING.md)
3943
* [Revel Contributors](https://github.com/revel/revel/graphs/contributors)
40-
41-
42-
## Gratitude
43-
44-
First and foremost, we'd like to thank the growing community of developers who enjoy using and contributing to Revel. Your patience, feedback, and moral support are vital to the ongoing development of Revel!
45-
46-
Finally, we'd like to thank the professional organizations that have supported the development of Revel:
47-
* [Looking Glass](https://www.lookingglasscyber.com/)
48-
49-
50-
## Announcements
51-
52-
View the [v0.15.0 release notes](https://github.com/revel/revel/releases/tag/v0.15.0)
53-
for all of the relevant changes.
54-
55-
We are working on increasing the speed and quality of our releases. Your feedback has never been so valuable, please share your thoughts with us and help shape Revel!

README.md.orig

Lines changed: 0 additions & 59 deletions
This file was deleted.

module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func (m *Module) ControllerByName(name, action string) (ctype *ControllerType) {
4444
comparision = m.Namespace() + name
4545
}
4646
for _, c := range m.ControllerTypeList {
47-
if strings.Index(c.Name(), comparision) > -1 {
47+
if c.Name() == comparision {
4848
ctype = c
4949
break
5050
}

version.go.orig

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy