nali 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md
CHANGED
@@ -1,29 +1,26 @@
|
|
1
|
-
# Nali
|
1
|
+
# Welcome to Nali
|
2
2
|
|
3
|
-
|
3
|
+
Nali is the framework for developing async web applications
|
4
4
|
|
5
|
-
##
|
5
|
+
## Getting Started
|
6
6
|
|
7
|
-
|
7
|
+
1. Install Nali at the command prompt if you haven't yet:
|
8
8
|
|
9
|
-
|
9
|
+
gem install nali
|
10
10
|
|
11
|
-
|
11
|
+
2. At the command prompt, create a new Nali application:
|
12
12
|
|
13
|
-
|
13
|
+
nali new appName
|
14
14
|
|
15
|
-
|
15
|
+
where "appName" is the application name.
|
16
16
|
|
17
|
-
|
17
|
+
3. Change directory to `appName` and run:
|
18
18
|
|
19
|
-
|
19
|
+
bundle install
|
20
20
|
|
21
|
-
|
21
|
+
4. Start the web server
|
22
22
|
|
23
|
-
|
23
|
+
bundle exec thin start
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
-
5. Create new Pull Request
|
25
|
+
5. Using a browser, go to `http://localhost:3000` and you'll see:
|
26
|
+
"Welcome to Nali"
|
@@ -1 +1,18 @@
|
|
1
|
-
.HomeIndex
|
1
|
+
.HomeIndex
|
2
|
+
background: #2D3E50
|
3
|
+
width: 100vw
|
4
|
+
height: 100vh
|
5
|
+
display: table-cell
|
6
|
+
vertical-align: middle
|
7
|
+
font-family: Lucida Grande, Arial, tahoma, verdana, sans-serif
|
8
|
+
|
9
|
+
.welcome, .title
|
10
|
+
text-align: center
|
11
|
+
|
12
|
+
.welcome
|
13
|
+
font-size: 10vmin
|
14
|
+
color: #ECF0F1
|
15
|
+
|
16
|
+
.title
|
17
|
+
font-size: 3vmin
|
18
|
+
color: #BDC3C7
|
data/lib/nali/version.rb
CHANGED