express_ui 0.1.0.rc3 → 0.1.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/app/assets/images/logo.png +0 -0
- data/app/views/express_ui/shared/_header.html.erb +1 -1
- data/app/views/express_ui/templates/_header.html.erb +1 -1
- data/lib/express_ui/engine.rb +1 -0
- data/lib/express_ui/version.rb +1 -1
- metadata +2 -2
- data/app/assets/config/express_ui_manifest.js +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c639519a52795744ff436308391fd4de4a90cb8
|
4
|
+
data.tar.gz: f7fc860967d6e3d08a0ffc550009bb2de02a4700
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1f5b17a21a8ab411675863bf5199a5f0b8cdc122f9ef1d61f762293bf2f5f1167f693b07d100d637f32b935108ad59e0495a144240bcdf750f2c8db249498006
|
7
|
+
data.tar.gz: 0507d88b4581eabacd503bb4124394d8f1bf57bc9c1ef92326552c42c2537af2959a83354e0bdd626732feefdb801e20b018a04b85f536f7e57887ea0acbadf8
|
data/README.md
CHANGED
@@ -4,6 +4,7 @@ Express UI
|
|
4
4
|
User interface library for AppExpress components.
|
5
5
|
|
6
6
|
## Installation
|
7
|
+
|
7
8
|
Add this line to your application's Gemfile:
|
8
9
|
|
9
10
|
```ruby
|
@@ -22,6 +23,14 @@ $ gem install express_ui
|
|
22
23
|
|
23
24
|
## Usage
|
24
25
|
|
26
|
+
Add this line to `config/routes.rb`:
|
27
|
+
|
28
|
+
```
|
29
|
+
mount ExpressUi::Engine => "/express_ui"
|
30
|
+
```
|
31
|
+
|
32
|
+
## Testing
|
33
|
+
|
25
34
|
Start the dummy Rails app:
|
26
35
|
|
27
36
|
```
|
@@ -32,7 +41,9 @@ bin/rails s
|
|
32
41
|
Visit `http://localhost:3000/express_ui`.
|
33
42
|
|
34
43
|
## Contributing
|
44
|
+
|
35
45
|
Contribution directions go here.
|
36
46
|
|
37
47
|
## License
|
48
|
+
|
38
49
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<header class="ae-header-fixed">
|
2
|
-
<a href="#" title="ExpressUI" class="ae-logo"><%= image_tag("
|
2
|
+
<a href="#" title="ExpressUI" class="ae-logo"><%= image_tag("logo.png", alt: "Express UI", width: "120") %></a>
|
3
3
|
<nav class="ae-nav-main main-nav ae-nav-right">
|
4
4
|
<ul class="ae-list-inline">
|
5
5
|
<%= nav_link_to 'About Express UI', about_path %>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<section>
|
2
2
|
<header>
|
3
|
-
<a href="#" title="ExpressUI" class="ae-logo"><%= image_tag("
|
3
|
+
<a href="#" title="ExpressUI" class="ae-logo"><%= image_tag("logo.png", alt: "Express UI", width: "120") %></a>
|
4
4
|
<nav class="ae-nav-main">
|
5
5
|
<ul class="ae-list-inline ae-nav-left">
|
6
6
|
<li class="ae-nav-item"><a href="#">Manage (Mega Menu)</a></li>
|
data/lib/express_ui/engine.rb
CHANGED
data/lib/express_ui/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: express_ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.0.
|
4
|
+
version: 0.1.0.rc4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Talcott Smith
|
@@ -119,7 +119,7 @@ executables: []
|
|
119
119
|
extensions: []
|
120
120
|
extra_rdoc_files: []
|
121
121
|
files:
|
122
|
-
- app/assets/
|
122
|
+
- app/assets/images/logo.png
|
123
123
|
- app/assets/javascripts/express_ui/application.js
|
124
124
|
- app/assets/javascripts/express_ui/copy_code.js
|
125
125
|
- app/assets/javascripts/express_ui/search.js
|