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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2473e7b7b2dd97a88fd22f60256f5f4635fdbbb9
4
- data.tar.gz: 7bb4bc5c7fdc8e61e2009fe548ad6b8b8131897b
3
+ metadata.gz: e8d6797675183b4462e1db6f84f1f6012c94dc9d
4
+ data.tar.gz: 1063fafe88fbb86c5b8fb8fafad17043be58daea
5
5
  SHA512:
6
- metadata.gz: da842f9cbaffc3fc9a9f0139aa72b74238735ec55920bb8247ecb9730abfacf60ffa624b0d8a0e20b837a895ceea75fb599b7d7f2a5ba7cd944490b6aa3e085c
7
- data.tar.gz: 20103214c551eaf99c8abd736fcd4379302cae4ae38e4e963e8a450bc790838508a3d0b60fdc57295caf3f9833482bf46c6f02b0d96da14a7d11b2798f929d9d
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.6"
33
- "will_paginate", "~> 3.1.0"
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 col-lg-1">
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 col-lg-11">
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>
@@ -1,3 +1,3 @@
1
1
  module DryAdmin
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Hlavacek