administrate-field-image 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/administrate-field-image.gemspec +1 -2
- data/app/views/fields/image/_show.html.erb +1 -1
- metadata +3 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7542731792022d74dfe88242061504d125059a44
|
4
|
+
data.tar.gz: 8e966de59a67b2a16a165b44a149a7549e8366b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 848f486fa3db2ba5ae71da54cd74d9ab52ddd86d041a7a9eb8a86b302ecfc06fc30aa967628ebec6e549c32003189b422cff97e6d5bb11e60ab7f11f126a762c
|
7
|
+
data.tar.gz: f41b5ed8c7771b9f3cbc317865a7e6969a8345b0b1c9a2ab5d3fa5ce9a476e7ab8c1445a3490470d4f9de58be55b0b726ab639be641370cb0f95c970667858d2
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# CHANGELOG
|
2
|
+
|
3
|
+
## 1.1.0 (2017-03-24)
|
4
|
+
|
5
|
+
* Don't crash if image is nil/blank ([#9][])
|
6
|
+
* Remove Explicit Dependency on Rails ([#11][])
|
7
|
+
* Adds this CHANGELOG ([#12][])
|
8
|
+
|
9
|
+
[#9]: https://github.com/thoughtbot/administrate-field-image/pull/9
|
10
|
+
[#11]: https://github.com/thoughtbot/administrate-field-image/pull/11
|
11
|
+
[#12]: https://github.com/thoughtbot/administrate-field-image/pull/12
|
12
|
+
|
13
|
+
## 1.0.0 (2017-01-16)
|
14
|
+
|
15
|
+
* Extraction from [administrate][].
|
16
|
+
* Rails 5 support.
|
17
|
+
|
18
|
+
[administrate]: https://github.com/thoughtbot/administrate
|
@@ -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-image"
|
5
|
-
gem.version = "1.
|
5
|
+
gem.version = "1.1.0"
|
6
6
|
gem.authors = ["Grayson Wright", "Nick Charlton"]
|
7
7
|
gem.email = ["wright.grayson@gmail.com", "nick@nickcharlton.net"]
|
8
8
|
gem.homepage = "https://github.com/graysonwright/administrate-field-image"
|
@@ -15,7 +15,6 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
16
16
|
|
17
17
|
gem.add_dependency "administrate", ">= 0.2.0.rc1"
|
18
|
-
gem.add_dependency "rails", ">= 4.2"
|
19
18
|
|
20
19
|
gem.add_development_dependency "rspec", "~> 3.4"
|
21
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: administrate-field-image
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Grayson Wright
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-03-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: administrate
|
@@ -25,20 +25,6 @@ dependencies:
|
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: 0.2.0.rc1
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
|
-
name: rails
|
30
|
-
requirement: !ruby/object:Gem::Requirement
|
31
|
-
requirements:
|
32
|
-
- - ">="
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version: '4.2'
|
35
|
-
type: :runtime
|
36
|
-
prerelease: false
|
37
|
-
version_requirements: !ruby/object:Gem::Requirement
|
38
|
-
requirements:
|
39
|
-
- - ">="
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
version: '4.2'
|
42
28
|
- !ruby/object:Gem::Dependency
|
43
29
|
name: rspec
|
44
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -62,6 +48,7 @@ extensions: []
|
|
62
48
|
extra_rdoc_files: []
|
63
49
|
files:
|
64
50
|
- ".gitignore"
|
51
|
+
- CHANGELOG.md
|
65
52
|
- Gemfile
|
66
53
|
- LICENSE
|
67
54
|
- README.md
|