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.
- checksums.yaml +4 -4
- data/README.md +24 -10
- data/exe/golink +1 -1
- data/lib/golink/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f3fe09f7f17924192412f4b8fddaf3337706596
|
4
|
+
data.tar.gz: 193ba2832bb911b6fb52a73e52cde1016fecb115
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
-
|
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!
|
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
|
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
data/lib/golink/version.rb
CHANGED