uicon 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/lib/uicon/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a379276eff507332b87b2ea7bf1114c95978e1c3
|
4
|
+
data.tar.gz: 5b3748260ffd9d5e5821cc1537d03c584f3605cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9ed02e05ac8aed2ab44554362e7aab0513794e2c83dbda8773af3c7e4655c88c0cb1490f807065998c33b5e30a57c406b9b51af46b23d5cc729620d7b18235f
|
7
|
+
data.tar.gz: db691f199e35ee4fd046da140264bd2f48c633e4d25bc48b451125746901ac1ca7b648d59d0b43eefd36bbb622baf5752f2cb1cb1b2dd2277d0b19986a81b6f5
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Uicon
|
2
2
|
|
3
|
-
|
3
|
+
Gives designers a folder to add their static HTML files for developers to wire up, and development routes for viewing them. This idea is not mine, credit goes to whoever made this at Hashrocket. http://hashrocket.com/blog/posts/managing-design-handoffs-with-the-ui-controller
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,13 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
|
22
|
+
Simply run
|
23
|
+
|
24
|
+
rails g uicon:install
|
25
|
+
|
26
|
+
And a controller, route, and index view will be created for you. Any Haml or ERB file that is added to the views/ui folder will be visible in development at /ui.
|
27
|
+
|
22
28
|
|
23
29
|
## Contributing
|
24
30
|
|
data/lib/uicon/version.rb
CHANGED