jekyll-autoscout24 0.1.4 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e02d7701b035b6fa2cb2f7a2564d487aa3fd54f1
4
- data.tar.gz: 0c8ce16e97b931d7026d7765992d2b64ebef3489
3
+ metadata.gz: 081a990a4c3c571c35441800b3be54cb7d50338b
4
+ data.tar.gz: 6e6ad1cef0d08c18bf39c8bd1504ac529c38311f
5
5
  SHA512:
6
- metadata.gz: 7e7090122b798fa433c3fa4e1da37e334f0b7361f3543ebef01a4c0e7be1e62c41baea02c590d3a296a4cf60997430a78fe12b4780c8d75aed31c82046e9c2b4
7
- data.tar.gz: 61005d4eb3703067c803225bf9f2b90fff202d258ad26dfbe653540e85b2fa83f8d3d3db77cdee95a6d9e70b7acd9ad67367cbbfd1dce38d8be2fb17dafe3f96
6
+ metadata.gz: e820b4d4172747c8d9894ab2dd466771fbdae6094426339d95e7026be5fc7b546e2ab73b5c71be0b3ed9f642c47e79709f46b8f94813458d9ba8f19e1038301c
7
+ data.tar.gz: d89d80c998296856f86d8c11b315157a12223cba85b5d9922af5e5626094aa602820d2cb17fdccacbd55849206b44e6f0a369150981b452a2117cfafe1470b4b
data/README.md CHANGED
@@ -1,31 +1,35 @@
1
1
  # Jekyll::Autoscout24
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/jekyll/autoscout24`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ A Jekyll plugin that provides owners of an Autoscout24 account a bridge between their backup XML file and a Jekyll site.
6
4
 
7
5
  ## Installation
8
6
 
9
- Add this line to your application's Gemfile:
7
+ You have 3 options for installing jekyll-autoscout24:
10
8
 
11
- ```ruby
12
- gem 'jekyll-autoscout24'
13
- ```
9
+ 1. In your site source root, make a `_plugins` directory. Place your plugin here.
10
+ Any file ending in `*.rb` inside this directory will be loaded before Jekyll generates your site.
14
11
 
15
- And then execute:
12
+ 2. In your `_config.yml` file, add a new array with the key `plugins` (or `gems` for Jekyll < `3.5.0`) and the values of the gem name of the plugin:
13
+
14
+ ```
15
+ plugins:
16
+ - jekyll-autoscout24
17
+ ```
16
18
 
17
- $ bundle
19
+ Then install your plugin using `gem install jekyll-autoscout24`
18
20
 
19
- Or install it yourself as:
21
+ 3. Add the plugin to a Bundler group in your `Gemfile`. An example:
20
22
 
21
- $ gem install jekyll-autoscout24
23
+ ```
24
+ group :jekyll_plugins do
25
+ gem "jekyll-autoscout24"
26
+ end
27
+ ```
22
28
 
23
29
  ## Usage
24
30
 
25
- TODO: Write usage instructions here
26
-
27
- The plugin jekyll-autoscout24 add to your jekyll project a folder called *autoscout24backup* in which you must put the *autoscout24backup.xml* file previously downloaded from your account AutoScout24.
28
- Soon continued..
31
+ 1. In your site source root, make a `backup` directory. Place your `autoscout24.xml` file here.
32
+ 2. Start Jekyll as you would normally (`bundle exec jekyll serve`).
29
33
 
30
34
  ## Development
31
35
 
@@ -37,7 +41,7 @@ To validate changes end-2-end, run `bundle install` in test/test-site and then r
37
41
 
38
42
  ## Contributing
39
43
 
40
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/jekyll-autoscout24. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/staticpagesio/jekyll-autoscout24. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
41
45
 
42
46
 
43
47
  ## License
@@ -23,8 +23,8 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency "liquid", "4.0.0"
24
24
  spec.add_dependency "jekyll", ENV["JEKYLL_VERSION"] ? "~> #{ENV["JEKYLL_VERSION"]}" : "~> 3.1"
25
25
 
26
+ spec.add_development_dependency "gem-release", "1.0.0"
26
27
  spec.add_development_dependency "bundler", "1.16.1"
27
28
  spec.add_development_dependency "rake", "12.3.0"
28
29
  spec.add_development_dependency "minitest", "~> 5.11.3"
29
- spec.add_development_dependency "gem-release", "1.0.0"
30
30
  end
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Autoscout24
3
- VERSION = "0.1.4"
3
+ VERSION = "0.1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-autoscout24
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Enrico Caputo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-03-29 00:00:00.000000000 Z
12
+ date: 2018-04-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ox
@@ -53,6 +53,20 @@ dependencies:
53
53
  - - ~>
54
54
  - !ruby/object:Gem::Version
55
55
  version: '3.1'
56
+ - !ruby/object:Gem::Dependency
57
+ name: gem-release
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - '='
61
+ - !ruby/object:Gem::Version
62
+ version: 1.0.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '='
68
+ - !ruby/object:Gem::Version
69
+ version: 1.0.0
56
70
  - !ruby/object:Gem::Dependency
57
71
  name: bundler
58
72
  requirement: !ruby/object:Gem::Requirement
@@ -95,20 +109,6 @@ dependencies:
95
109
  - - ~>
96
110
  - !ruby/object:Gem::Version
97
111
  version: 5.11.3
98
- - !ruby/object:Gem::Dependency
99
- name: gem-release
100
- requirement: !ruby/object:Gem::Requirement
101
- requirements:
102
- - - '='
103
- - !ruby/object:Gem::Version
104
- version: 1.0.0
105
- type: :development
106
- prerelease: false
107
- version_requirements: !ruby/object:Gem::Requirement
108
- requirements:
109
- - - '='
110
- - !ruby/object:Gem::Version
111
- version: 1.0.0
112
112
  description: A Jekyll plugin to transform AutoScout24's backup XML into a data file
113
113
  email:
114
114
  - enricocaputo.1972@gmail.com