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
- TODO: Write a gem description
3
+ Nali is the framework for developing async web applications
4
4
 
5
- ## Installation
5
+ ## Getting Started
6
6
 
7
- Add this line to your application's Gemfile:
7
+ 1. Install Nali at the command prompt if you haven't yet:
8
8
 
9
- gem 'nali'
9
+ gem install nali
10
10
 
11
- And then execute:
11
+ 2. At the command prompt, create a new Nali application:
12
12
 
13
- $ bundle
13
+ nali new appName
14
14
 
15
- Or install it yourself as:
15
+ where "appName" is the application name.
16
16
 
17
- $ gem install nali
17
+ 3. Change directory to `appName` and run:
18
18
 
19
- ## Usage
19
+ bundle install
20
20
 
21
- TODO: Write usage instructions here
21
+ 4. Start the web server
22
22
 
23
- ## Contributing
23
+ bundle exec thin start
24
24
 
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
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,4 +1,7 @@
1
1
  /*
2
2
  *= require_self
3
3
  *= require_tree .
4
- */
4
+ */
5
+
6
+ body
7
+ margin: 0
@@ -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
@@ -0,0 +1,2 @@
1
+ <div class="welcome">Welcome to Nali</div>
2
+ <div class="title">Framework for developing async web applications</div>
@@ -1,5 +1,5 @@
1
1
  module Nali
2
2
 
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nali
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: