appmake 0.0.37 → 0.1.0
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 +9 -8
- data/lib/appmake/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,24 +1,25 @@
|
|
1
1
|
# Appmake
|
2
2
|
|
3
|
-
|
3
|
+
Single page apps made easy!
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
|
7
|
+
Create app directory.
|
8
8
|
|
9
|
-
|
9
|
+
mkdir myapp
|
10
|
+
cd myapp
|
10
11
|
|
11
|
-
|
12
|
+
Create `Gemfile` with following content
|
12
13
|
|
13
|
-
|
14
|
+
source :rubygems
|
14
15
|
|
15
|
-
|
16
|
+
gem "appmake"
|
16
17
|
|
17
|
-
|
18
|
+
Run `bundle install`
|
18
19
|
|
19
20
|
## Usage
|
20
21
|
|
21
|
-
|
22
|
+
Run `bundle exec appmake init` to bootstrap app directory structure. Next issue `bundle exec appmake watch` to start automatic compillation of source files.
|
22
23
|
|
23
24
|
## Contributing
|
24
25
|
|
data/lib/appmake/version.rb
CHANGED