administrate-field-refile 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +5 -1
- data/LICENSE +21 -0
- data/README.md +5 -1
- data/administrate-field-refile.gemspec +2 -2
- metadata +5 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9f6de8c89e89687f9b67cff51f8939609be3a15
|
4
|
+
data.tar.gz: bc3acaa1c4ad2dc5de6023fccffeb0cc1a304f64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54fc2c095c8861d7e92e7edcd9ef51433417ed3dd340f75db5e36d8682afd7765ed634e8157bdb61a66f1ee551fe69c089983a83ad2f693314115e648a13ea77
|
7
|
+
data.tar.gz: 11c83b314c1b925a4790f06079e036f68e10425eb27ad5c2cb85af8860c137496a77b9210bf7b1fd7f191c8a38669f1a72764f49baa516b6d5400d57056d9a37
|
data/Gemfile
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 DisruptiveAngels
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# AdministrateFieldRefile
|
2
|
+
[![Gem](https://img.shields.io/gem/v/administrate-field-refile.svg)]()
|
2
3
|
|
3
4
|
All you need to integrate Refile with Administrate.
|
4
5
|
|
@@ -12,7 +13,7 @@ gem 'administrate-field-refile'
|
|
12
13
|
|
13
14
|
And then execute:
|
14
15
|
```
|
15
|
-
$ bundle
|
16
|
+
$ bundle install
|
16
17
|
```
|
17
18
|
|
18
19
|
## Usage
|
@@ -34,3 +35,6 @@ ATTRIBUTE_TYPES = {
|
|
34
35
|
## Contributing
|
35
36
|
|
36
37
|
Bug reports and pull requests are welcome on GitHub at https://github.com/DisruptiveAngels/administrate-field-refile.
|
38
|
+
|
39
|
+
## License
|
40
|
+
[MIT License](https://github.com/DisruptiveAngels/administrate-field-refile/blob/better_readme/LICENSE)
|
@@ -2,7 +2,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = 'administrate-field-refile'
|
5
|
-
gem.version = '0.0.
|
5
|
+
gem.version = '0.0.7'
|
6
6
|
gem.authors = ['Adrian Rangel']
|
7
7
|
gem.email = ['adrian@disruptiveangels.com']
|
8
8
|
gem.homepage = 'https://github.com/disruptiveangels/administrate-field-refile'
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.files = `git ls-files`.split("\n")
|
15
15
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
16
|
|
17
|
-
gem.add_dependency 'administrate', '>= 0.2.0'
|
17
|
+
gem.add_dependency 'administrate', '>= 0.2.0'
|
18
18
|
gem.add_dependency 'rails', '>= 4.2', '< 5.1'
|
19
19
|
gem.add_dependency 'refile', '~> 0.6'
|
20
20
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: administrate-field-refile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrian Rangel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: administrate
|
@@ -17,9 +17,6 @@ dependencies:
|
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 0.2.0
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.3.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -27,9 +24,6 @@ dependencies:
|
|
27
24
|
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: 0.2.0
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 0.3.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: rails
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,6 +81,7 @@ extra_rdoc_files: []
|
|
87
81
|
files:
|
88
82
|
- ".gitignore"
|
89
83
|
- Gemfile
|
84
|
+
- LICENSE
|
90
85
|
- README.md
|
91
86
|
- administrate-field-refile.gemspec
|
92
87
|
- app/views/fields/refile/_form.html.erb
|
@@ -114,9 +109,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
109
|
version: '0'
|
115
110
|
requirements: []
|
116
111
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.5.
|
112
|
+
rubygems_version: 2.5.2
|
118
113
|
signing_key:
|
119
114
|
specification_version: 4
|
120
115
|
summary: Add Refile fields to Administrate
|
121
116
|
test_files:
|
122
117
|
- spec/lib/administrate/field/refile_spec.rb
|
118
|
+
has_rdoc:
|