File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ### 0.1.0
4
- _ TBD_
3
+ ## ? - WIP
4
+
5
+ ## 0.1.0 - 2017/09/20
6
+ This is the very first release, with the following functionality:
7
+ - article-json format that supports several basic elements; like headings,
8
+ paragraphs, images or lists
9
+ - Resolving of embedded elements like videos or tweets via OEmbed standard
10
+ - Conversion from and to JSON (or ruby hashes)
11
+ - Parsing of HTML exports from Google documents
12
+ - Export into plain HTML
Original file line number Diff line number Diff line change 2
2
JSON Format for News Articles & Ruby Gem.
3
3
4
4
## Status
5
+ [ ![ Gem Version] ( https://badge.fury.io/rb/article_json.svg )] ( https://badge.fury.io/rb/article_json )
5
6
[ ![ Build Status] ( https://travis-ci.org/Devex/article_json.svg )] ( https://travis-ci.org/Devex/article_json )
6
7
[ ![ Code Climate] ( https://codeclimate.com/github/Devex/article_json/badges/gpa.svg )] ( https://codeclimate.com/github/Devex/article_json )
7
8
[ ![ Coverage Status] ( https://coveralls.io/repos/github/Devex/article_json/badge.svg?branch=master )] ( https://coveralls.io/github/Devex/article_json?branch=master )
@@ -48,7 +49,7 @@ A full example of the format can be found in the test fixtures:
48
49
## Import
49
50
### Google Document Parser
50
51
This [ Reference Document] ( https://docs.google.com/document/d/1E4lncZE2jDkbE34eDyYQmXKA9O26BHUiwguz4S9qyE8/edit?usp=sharing )
51
- lists contains all supported formattings along with some descriptions.
52
+ lists contains all supported formatting along with some descriptions.
52
53
53
54
## Export
54
55
### HTML
Original file line number Diff line number Diff line change 1
1
module ArticleJSON
2
- VERSION = '0.0 .0'
2
+ VERSION = '0.1 .0'
3
3
end
Original file line number Diff line number Diff line change 40
40
shared_context 'for a correctly parsed Hash' do
41
41
let ( :example_hash ) do
42
42
{
43
- article_json_version : '0.0 .0' ,
43
+ article_json_version : '0.1 .0' ,
44
44
content : [
45
45
{
46
46
type : :paragraph ,
Original file line number Diff line number Diff line change 1
1
{
2
- "article_json_version" : " 0.0 .0" ,
2
+ "article_json_version" : " 0.1 .0" ,
3
3
"content" : [
4
4
{
5
5
"type" : " paragraph" ,
You can’t perform that action at this time.
0 commit comments