administrate-field-lazy_belongs_to 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/administrate-field-lazy_belongs_to.gemspec +1 -1
- data/app/assets/stylesheets/{administate-field-lazy_belongs_to → administrate-field-lazy_belongs_to}/application.css +0 -0
- data/app/assets/stylesheets/{administate-field-lazy_belongs_to → administrate-field-lazy_belongs_to}/components/lazy_belongs_to.css +0 -0
- data/app/views/fields/lazy_belongs_to/_form.html.erb +1 -1
- data/lib/administrate/field/lazy_belongs_to/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: daa6ecbe07248c11f64ece2317973e473d3c413c12215df65e91d0cfb6ac6900
|
4
|
+
data.tar.gz: fc2fa1a76a7654b6c99208c3af9efaccb2eab50f72703bca48dcd46f9e5ee7fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9858c452531c2c32a238e04fc7192d17930b380025474badc945f7c210748d416b38b05f07e699b3728b636f47531bef73a13b37453d7662a2e2e1c26bc868be
|
7
|
+
data.tar.gz: cb399b93a4100373e3a2366e067123f20a5fa2d1f9f724213a314331f3151a1ac4591fd19dcad9f91ee0be4789cfd703a760b2b2992928dc997c223a6bfbc005
|
data/README.md
CHANGED
@@ -110,6 +110,7 @@ example above it will only show authors with the current publisher.
|
|
110
110
|
|
111
111
|
### Fields
|
112
112
|
|
113
|
+
- [`Administrate::Field::Code`](https://github.com/XPBytes/administrate-field-code): :pencil: A `text` field that shows code.
|
113
114
|
- [`Administrate::Field::Hyperlink`](https://github.com/XPBytes/administrate-field-hyperlink): :pencil: A `string` field that is shows a hyperlink.
|
114
115
|
- [`Adminisrtate::Field::JsonEditor`](https://github.com/XPBytes/administrate-field-json_editor): :pencil: A `text` field that shows a [JSON editor](https://github.com/josdejong/jsoneditor).
|
115
116
|
- [`Administrate::Field::ScopedBelongsTo`](https://github.com/XPBytes/administrate-field-scoped_belongs_to): :pencil: A `belongs_to` field that yields itself to the scope `lambda`.
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
|
20
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
21
21
|
spec.metadata['source_code_uri'] = spec.homepage
|
22
|
-
spec.metadata['changelog_uri'] = spec.homepage + '/CHANGELOG.md'
|
22
|
+
spec.metadata['changelog_uri'] = spec.homepage + '/blob/master/CHANGELOG.md'
|
23
23
|
else
|
24
24
|
raise 'RubyGems 2.0 or newer is required to protect against ' \
|
25
25
|
'public gem pushes.'
|
File without changes
|
File without changes
|
@@ -31,7 +31,7 @@ Instead of the default, this only loads the results lazily
|
|
31
31
|
>
|
32
32
|
<%= f.hidden_field(field.permitted_attribute) %>
|
33
33
|
|
34
|
-
<button type="button" disabled="disabled"><%= field.current_value %></button>
|
34
|
+
<button type="button" disabled="disabled" class="button"><%= field.current_value %></button>
|
35
35
|
|
36
36
|
<div class="popout" data-target="popout">
|
37
37
|
<input type="search" class="search" placeholder="Search...">
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: administrate-field-lazy_belongs_to
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derk-Jan Karrenbeld
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: administrate
|
@@ -110,8 +110,8 @@ files:
|
|
110
110
|
- administrate-field-lazy_belongs_to.gemspec
|
111
111
|
- app/assets/javascripts/administrate-field-lazy_belongs_to/application.js
|
112
112
|
- app/assets/javascripts/administrate-field-lazy_belongs_to/components/lazy_belongs_to.js
|
113
|
-
- app/assets/stylesheets/
|
114
|
-
- app/assets/stylesheets/
|
113
|
+
- app/assets/stylesheets/administrate-field-lazy_belongs_to/application.css
|
114
|
+
- app/assets/stylesheets/administrate-field-lazy_belongs_to/components/lazy_belongs_to.css
|
115
115
|
- app/views/fields/lazy_belongs_to/_form.html.erb
|
116
116
|
- app/views/fields/lazy_belongs_to/_index.html.erb
|
117
117
|
- app/views/fields/lazy_belongs_to/_show.html.erb
|
@@ -124,7 +124,7 @@ licenses:
|
|
124
124
|
metadata:
|
125
125
|
homepage_uri: https://github.com/XPBytes/administrate-field-lazy_belongs_to
|
126
126
|
source_code_uri: https://github.com/XPBytes/administrate-field-lazy_belongs_to
|
127
|
-
changelog_uri: https://github.com/XPBytes/administrate-field-lazy_belongs_to/CHANGELOG.md
|
127
|
+
changelog_uri: https://github.com/XPBytes/administrate-field-lazy_belongs_to/blob/master/CHANGELOG.md
|
128
128
|
post_install_message:
|
129
129
|
rdoc_options: []
|
130
130
|
require_paths:
|