golink 1.0.0 → 1.0.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -10
  3. data/exe/golink +1 -1
  4. data/lib/golink/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 751cd5d3d22f1a572695f0d1b0519c7a4597a9ca
4
- data.tar.gz: 198992b11048dfa7003f99cc8691c4aa6cd957fd
3
+ metadata.gz: 7f3fe09f7f17924192412f4b8fddaf3337706596
4
+ data.tar.gz: 193ba2832bb911b6fb52a73e52cde1016fecb115
5
5
  SHA512:
6
- metadata.gz: 8bb8d12bfe29468b6f2dd0b2a2519ac224e86eee59fe989a6ebd39c99adbf73ed2ca6774b016b45b4e992947dcb5dcd7682e93d20db885cc6003a5682a8f2cf0
7
- data.tar.gz: 227a0f11429a14ee1375b4d94f802300ee8b6dd7fb9dea1bdf3704b4f422d006b5cec984e87b662d4a7c6229077d895da0d3cce6236cc0f3058ea33f1e3daad4
6
+ metadata.gz: 89e0ef0e65636bfb34ceb681671e8c542af3a298a4ce1e8e6aae406f8aba7a7f144d3094c1574bc2783149173e3ca8d5caeb7a0a9d43e5f097e262ecc033c8ea
7
+ data.tar.gz: 85f2992965160645243891e5ece6a62b64cf692d117b0229f698c9c71bbae159a59bc007f8bacb4b9698aa4a48c354f7dba511bd91e456037fd1592d5438d2aa
data/README.md CHANGED
@@ -8,7 +8,7 @@ Golink is a minimal theme for [Jekyll](https://jekyllrb.com), especially for tho
8
8
 
9
9
  * [Feature](https://github.com/williamcanin/golink/#feature)
10
10
  * [Requeriments](https://github.com/williamcanin/golink/#requeriments)
11
- * [Usage](https://github.com/williamcanin/golink/#usage)
11
+ * [Usage and Install](https://github.com/williamcanin/golink/#usage-and-install)
12
12
  * [Custom Appearance](https://github.com/williamcanin/golink/#custom-appearance)
13
13
  * [Deploy](https://github.com/williamcanin/golink/#deploy)
14
14
  * [Demo](https://github.com/williamcanin/golink/#demo)
@@ -29,19 +29,22 @@ Golink is a minimal theme for [Jekyll](https://jekyllrb.com), especially for tho
29
29
  **Used plugins**:
30
30
 
31
31
  * Vendors:
32
- - jekyll-email-protect
32
+ - [jekyll-email-protect](https://github.com/vwochnik/jekyll-email-protect)
33
33
 
34
34
 
35
35
  ## Requeriments
36
36
 
37
37
  | Requerid | How to check | How to install |
38
38
  | --------------- | ------------------- | -------------- |
39
- | Git | `git --version` | [Git](http://git-scm.com/) |
40
- | Ruby | `ruby -v` | [Ruby](https://www.ruby-lang.org) |
41
- | Gem | `gem -v` | **Ruby** contains **Gem** |
42
- | Bundler | `bundler -v` | `gem install bundler` |
39
+ | ruby | `ruby -v` | [Ruby](https://www.ruby-lang.org) |
40
+ | git | `git --version` | [Git](http://git-scm.com/) |
41
+ | gem | `gem -v` | **Ruby** contains **Gem** |
42
+ | bundler | `bundler -v` | `gem install bundler` |
43
+ | jekyll | `jekyll -v` | [Jekyll](https://jekyllrb.com/) |
44
+ | rake | `rake --version` | `gem install rake` |
45
+ | colorize | `gem list colorize` | `gem install colorize` |
43
46
 
44
- ## Usage
47
+ ## Usage and Install
45
48
 
46
49
  1 - Install theme Go!Link:
47
50
 
@@ -55,11 +58,22 @@ $ gem install golink
55
58
  $ golink init
56
59
  ```
57
60
 
58
- Ready! Now just confirm your information. Follow and see.
61
+ 3 - Run the command below to install the required plugins for Go! Link.
62
+
63
+ ```
64
+ $ bundle install
65
+ ```
66
+
67
+ 4 - Ready! Now, you can run a test running the Jekyll server:
68
+
69
+ ```
70
+ $ jekyll s
71
+ ```
72
+
59
73
 
60
74
  ## Custom Appearance
61
75
 
62
- Now that the 'Go! Link' is functional, just put your information to leave it with your preference.
76
+ Now that the '**Go!Link**' is functional, just put your information to leave it with your preference.
63
77
 
64
78
  The settings are contained in the file '**_data/dbase.yml**'. In this file you must change the values according to your need.
65
79
 
@@ -85,7 +99,7 @@ Make your opinions on Typing Jekyll Template, in:
85
99
 
86
100
  ## Versions
87
101
 
88
- You can download the versions without making a clone with Git. Go to [Releases](https://github.com/williamcanin/golink/releases)
102
+ You can view and download the versions in [RubyGems](https://rubygems.org/gems/golink)
89
103
 
90
104
  ## License and Copyrights
91
105
 
data/exe/golink CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "bundler/setup"
3
+ # require "bundler/setup" # for development
4
4
  require "golink"
5
5
 
6
6
  # Instance class
@@ -8,7 +8,7 @@ module Jekyll
8
8
  # PATCH: Fixes bugs and brings improvements in existing implementations
9
9
  MAJOR = 1
10
10
  MINOR = 0
11
- PATCH = 0
11
+ PATCH = 1
12
12
  VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}"
13
13
 
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: golink
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Canin