administrate-field-simple_markdown 0.1.2 → 0.2.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/.gitignore +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +6 -0
- data/README.md +4 -2
- data/administrate-field-simple_markdown.gemspec +4 -4
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d97fa1cbb30ca70317f3d92f56b3551a4b587ecdf2f0bfced6878971ee6fe0f
|
|
4
|
+
data.tar.gz: 7b437834f9a976fd3c324fb9c31bb39c08e13827c4c2ab7f7f9ffd33073db507
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a61a8f189664493becc332853733603648ef9fde9deac1a43c21209ea0ecdc4c2f910c134b40e1b7d80114736b1b4221509b9cd5502ba1588301467107d2bfc5
|
|
7
|
+
data.tar.gz: e9acb7b3351702ee55b1624032fc613cec3822c6c6fadb16f36a53c3c381d716544f79213d8365c3d2e08f4af4efe3d7e2d13bfd6f07531fe9d341bf1c255fc4
|
data/.gitignore
CHANGED
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.6.3
|
data/.travis.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
language: ruby
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.2.0](https://github.com/zooppa/administrate-field-simple_markdown/tree/v0.2.0) (2018-08-27)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/zooppa/administrate-field-simple_markdown/compare/v0.1.2...v0.2.0)
|
|
6
|
+
|
|
7
|
+
* Update the requirements on Rails to permit the latest version
|
|
8
|
+
|
|
3
9
|
## [v0.1.2](https://github.com/zooppa/administrate-field-simple_markdown/tree/v0.1.2) (2018-05-24)
|
|
4
10
|
|
|
5
11
|
[Full Changelog](https://github.com/zooppa/administrate-field-simple_markdown/compare/v0.1.1...v0.1.2)
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Administrate::Field::SimpleMarkdown
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.com/zooppa/administrate-field-simple_markdown)
|
|
3
4
|
[](https://codeclimate.com/github/zooppa/administrate-field-simple_markdown)
|
|
4
|
-
[](https://semaphoreci.com/zooppa/administrate-field-simple_markdown)
|
|
5
5
|
|
|
6
6
|
A plugin to edit Markdown text in [Administrate] using [SimpleMDE] v1.11.2.
|
|
7
7
|
|
|
@@ -12,7 +12,7 @@ A plugin to edit Markdown text in [Administrate] using [SimpleMDE] v1.11.2.
|
|
|
12
12
|
Add it to your `Gemfile`:
|
|
13
13
|
|
|
14
14
|
```ruby
|
|
15
|
-
gem 'administrate-field-simple_markdown', '~> 0.
|
|
15
|
+
gem 'administrate-field-simple_markdown', '~> 0.2.0'
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Run:
|
|
@@ -33,6 +33,8 @@ ATTRIBUTE_TYPES = {
|
|
|
33
33
|
|
|
34
34
|
Administrate::Field::SimpleMarkdown is maintained by [Zooppa].
|
|
35
35
|
|
|
36
|
+
See also the list of [contributors](https://github.com/zooppa/administrate-field-simple_markdown/contributors) who participated in this project.
|
|
37
|
+
|
|
36
38
|
[administrate]: https://github.com/thoughtbot/administrate
|
|
37
39
|
[simplemde]: https://github.com/NextStepWebs/simplemde-markdown-editor
|
|
38
40
|
[zooppa]: https://www.zooppa.com/
|
|
@@ -2,9 +2,9 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |gem|
|
|
4
4
|
gem.name = 'administrate-field-simple_markdown'
|
|
5
|
-
gem.version = '0.
|
|
6
|
-
gem.authors = ['
|
|
7
|
-
gem.email = ['
|
|
5
|
+
gem.version = '0.2.0'
|
|
6
|
+
gem.authors = ['Zooppa']
|
|
7
|
+
gem.email = ['dev@zooppa.com']
|
|
8
8
|
gem.homepage = 'https://github.com/zooppa/administrate-field-simple_markdown'
|
|
9
9
|
gem.summary = 'Markdown editor for Administrate'
|
|
10
10
|
gem.description = 'A plugin to handle Markdown text in Administrate'
|
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
|
15
15
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
16
16
|
|
|
17
17
|
gem.add_runtime_dependency 'administrate', '< 1.0.0'
|
|
18
|
-
gem.add_runtime_dependency 'rails', '>= 4.2', '<
|
|
18
|
+
gem.add_runtime_dependency 'rails', '>= 4.2', '< 7'
|
|
19
19
|
gem.add_runtime_dependency 'redcarpet', '~> 3.3'
|
|
20
20
|
|
|
21
21
|
gem.add_development_dependency 'rake', '~> 12.3'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: administrate-field-simple_markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Zooppa
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: administrate
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '4.2'
|
|
34
34
|
- - "<"
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: '
|
|
36
|
+
version: '7'
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '4.2'
|
|
44
44
|
- - "<"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '
|
|
46
|
+
version: '7'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: redcarpet
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -88,13 +88,15 @@ dependencies:
|
|
|
88
88
|
version: '3.7'
|
|
89
89
|
description: A plugin to handle Markdown text in Administrate
|
|
90
90
|
email:
|
|
91
|
-
-
|
|
91
|
+
- dev@zooppa.com
|
|
92
92
|
executables: []
|
|
93
93
|
extensions: []
|
|
94
94
|
extra_rdoc_files: []
|
|
95
95
|
files:
|
|
96
96
|
- ".gitignore"
|
|
97
97
|
- ".rspec"
|
|
98
|
+
- ".ruby-version"
|
|
99
|
+
- ".travis.yml"
|
|
98
100
|
- CHANGELOG.md
|
|
99
101
|
- Gemfile
|
|
100
102
|
- LICENSE.md
|
|
@@ -131,8 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
133
|
- !ruby/object:Gem::Version
|
|
132
134
|
version: '0'
|
|
133
135
|
requirements: []
|
|
134
|
-
|
|
135
|
-
rubygems_version: 2.7.6
|
|
136
|
+
rubygems_version: 3.0.3
|
|
136
137
|
signing_key:
|
|
137
138
|
specification_version: 4
|
|
138
139
|
summary: Markdown editor for Administrate
|