dry_admin 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -4
- data/app/views/layouts/dry_admin/application.html.erb +2 -2
- data/lib/dry_admin/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: e8d6797675183b4462e1db6f84f1f6012c94dc9d
|
4
|
+
data.tar.gz: 1063fafe88fbb86c5b8fb8fafad17043be58daea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 617750d93a0a3105ef20a23c0f596f99ba780644b0010c2e09d707b10f3b0e91f5f1ac57ac653e9b623d7c41565789c55e547790b01e85bf63adb7fe98e1c8bc
|
7
|
+
data.tar.gz: e0555705e9213a77d8fee35dac95808f40bb8e3bf56289d6a74c4633299e9402ed64fd5c827bae9f65b58342ea2fa8021bf5b3b1f967da88f315a1f7b95e7687
|
data/README.md
CHANGED
@@ -29,9 +29,9 @@ $ gem install dry_admin
|
|
29
29
|
DRYAdmin has currently three dependencies (apart from Rails itself). Bootstrap to make it look nice, Will Paginate to make Pagination work easily.
|
30
30
|
|
31
31
|
```ruby
|
32
|
-
"bootstrap-sass", "~> 3.3
|
33
|
-
"will_paginate", "~> 3.1
|
34
|
-
"will_paginate-bootstrap"
|
32
|
+
"bootstrap-sass", "~> 3.3"
|
33
|
+
"will_paginate", "~> 3.1"
|
34
|
+
"will_paginate-bootstrap", "~> 1"
|
35
35
|
```
|
36
36
|
|
37
37
|
## Usage
|
@@ -43,9 +43,13 @@ You can change mounting point to anything you like of course.
|
|
43
43
|
If you are using this gem and like it, get in touch with me - [@HlavacekMichal](https://twitter.com/hlavacekmichal).
|
44
44
|
And if you feel very generous and want to support further development, you can <a href='https://ko-fi.com/A0482223' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
45
45
|
|
46
|
+
## Screenshot
|
47
|
+
|
48
|
+
![Screenshot](https://github.com/MichalHlavacek/dry_admin/raw/master/Screen%20Shot%202017-06-16%20at%2007.26.11.png "Screenshot")
|
49
|
+
|
46
50
|
## Contributing
|
47
51
|
If you want to add, customize, remove, change or polish anything, please open an issue and we can discuss that, and I'll most likely fix that until version 0.2.
|
48
52
|
For those who will be reading the source code, I apologize in advance. I made this in one sunny afternoon, and haven't find a time to properly refactor and beautify the code yet.
|
49
53
|
|
50
54
|
## License
|
51
|
-
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
55
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
@@ -26,10 +26,10 @@
|
|
26
26
|
</nav>
|
27
27
|
<div class="container-fluid">
|
28
28
|
<div class="row">
|
29
|
-
<div class="col-xs-12 col-sm-3 col-md-2
|
29
|
+
<div class="col-xs-12 col-sm-3 col-md-2">
|
30
30
|
<%= render :partial => 'dry_admin/shared/models' %>
|
31
31
|
</div>
|
32
|
-
<div class="col-xs-12 col-sm-9 col-md-10
|
32
|
+
<div class="col-xs-12 col-sm-9 col-md-10">
|
33
33
|
<%= render :partial => 'dry_admin/shared/alerts' %>
|
34
34
|
<%= yield %>
|
35
35
|
</div>
|
data/lib/dry_admin/version.rb
CHANGED