related-blog-posts 0.1.3 → 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 +4 -4
- data/Gemfile +4 -2
- data/lib/jekyll-tfidf-related-posts.rb +1 -1
- data/{jekyll-tfidf-related-posts.gemspec → related-blog-posts.gemspec} +2 -2
- metadata +3 -4
- data/CONTRIBUTE.md +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cf7a9582c6b4d2e4463e23c0aebc16a806caa60c7f038efb9a99368e8bc0706
|
|
4
|
+
data.tar.gz: 3bba33b0bfb17b2deec059a75af28ae4039da428d036718f2157f511f216daf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2ecaa4a1c270249d920e093967745ea9a01b4fa7e8ddb24252de61d00dfa55b44156aa29b26787cf66562b050a60a12a2f962f74b67f260e23c3b724b4c625f
|
|
7
|
+
data.tar.gz: 52d09f8b491f459e5cc44475c6e6e732d816b6bf4d379a742c16faf4b0204ec269b513b8ea6ab18629923350152e1d329964c396c6d65c020263c23845a76a8f
|
data/Gemfile
CHANGED
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "related-blog-posts"
|
|
7
|
-
spec.version = "0.1.
|
|
7
|
+
spec.version = "0.1.5"
|
|
8
8
|
spec.authors = ["Manpreet singh"]
|
|
9
9
|
spec.email = ["ms4110415@gmail.com"]
|
|
10
10
|
spec.summary = %q{Jekyll plugin to show related posts based on the content, tags, and categories.}
|
|
11
11
|
spec.description = %q{Jekyll plugin to show related posts based on the content, tags, and categories. The similarity is calculated using TF-IDF(term frequency-inverted document frequency). Since tags and categories are use-defined values, those are considered with higher weights than a content while calculating.}
|
|
12
|
-
spec.homepage = "https://github.com/ManpreetChoudhary/
|
|
12
|
+
spec.homepage = "https://github.com/ManpreetChoudhary/related-blog-posts"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: related-blog-posts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Manpreet singh
|
|
@@ -91,13 +91,12 @@ extensions: []
|
|
|
91
91
|
extra_rdoc_files: []
|
|
92
92
|
files:
|
|
93
93
|
- ".gitignore"
|
|
94
|
-
- CONTRIBUTE.md
|
|
95
94
|
- Gemfile
|
|
96
95
|
- LICENSE.txt
|
|
97
96
|
- README.md
|
|
98
|
-
- jekyll-tfidf-related-posts.gemspec
|
|
99
97
|
- lib/jekyll-tfidf-related-posts.rb
|
|
100
|
-
|
|
98
|
+
- related-blog-posts.gemspec
|
|
99
|
+
homepage: https://github.com/ManpreetChoudhary/related-blog-posts
|
|
101
100
|
licenses:
|
|
102
101
|
- MIT
|
|
103
102
|
metadata: {}
|