ed. 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -1
- data/README.md +2 -2
- data/documentation.md +5 -5
- 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: 2067ebca01630e9f477bee9c9fe59ad5af30b151
|
4
|
+
data.tar.gz: 40b75f85468a7125dd75f6d2cd627b716c47544f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6140314bd0ede776395087ce14b7fe68761757bb1d8e245eacbf4083940de94ebb836e37a6c1fd86055a30fffc4dc859c1f2d27bb65554f074a75d4d2d58ba66
|
7
|
+
data.tar.gz: 24c1cae039667801bc03cb9dba8dd2344f2fb567871541980cc74c937bc52283c7b617a4868511f672c5af99cdb128fc55545de8f8bc3134df4f9ff83ff28643
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Ed: A Jekyll Theme for Minimal Editions
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/
|
3
|
+
[![Build Status](https://travis-ci.org/minicomp/ed.svg?branch=master)](https://travis-ci.org/minicomp/ed) [![Gem Version](https://badge.fury.io/rb/ed..svg)](https://badge.fury.io/rb/ed.)
|
4
4
|
|
5
5
|
|
6
|
-
![Sample Ed screenshot](https://github.com/
|
6
|
+
![Sample Ed screenshot](https://github.com/minicomp/ed/blob/master/assets/screenshot-home.png)
|
7
7
|
|
8
8
|
|
9
9
|
|
data/documentation.md
CHANGED
@@ -30,7 +30,7 @@ The easy way to do this is not necessarily the more robust, and may simply not w
|
|
30
30
|
If you're using a Mac, make sure you have the appropriate version of [XCode command line tools](https://developer.apple.com/xcode/download/) for your OSX. Using the terminal's `cd` command, switch to the directory where you want to install your project. Once inside the folder, you are ready to download and start using Ed. Enter each of these lines into your terminal (remember to ignore the `$`):
|
31
31
|
|
32
32
|
~~~ bash
|
33
|
-
$ git clone https://github.com/
|
33
|
+
$ git clone https://github.com/minicomp/ed.git
|
34
34
|
$ cd ed
|
35
35
|
$ gem install bundler
|
36
36
|
$ bundle install
|
@@ -59,7 +59,7 @@ $ git --version
|
|
59
59
|
If you don't get an error, you're good to go. Using the `cd` command on your terminal, navigate to the folder where you keep your web projects. Once you're in the folder where you want Ed to live, download it from github using the following line (remember you can copy and paste):
|
60
60
|
|
61
61
|
~~~ bash
|
62
|
-
$ git clone https://github.com/
|
62
|
+
$ git clone https://github.com/minicomp/ed.git
|
63
63
|
~~~
|
64
64
|
|
65
65
|
At this point you should navigate inside your Ed project folder and stay there until further notice:
|
@@ -76,7 +76,7 @@ After the process runs succesfully, read the last few lines generated by the ter
|
|
76
76
|
$ rvm --version
|
77
77
|
~~~
|
78
78
|
|
79
|
-
If you don't get an error, you're ready for the next step. If you do get an error, and don't feel comfortable troubleshooting on the terminal, this is a good opportunity to reach out to a friend who can help. You can leave me a note on [the issues page](https://github.com/
|
79
|
+
If you don't get an error, you're ready for the next step. If you do get an error, and don't feel comfortable troubleshooting on the terminal, this is a good opportunity to reach out to a friend who can help. You can leave me a note on [the issues page](https://github.com/minicomp/ed/issues), for example. I'll try to get to it as soon as my other commitments permit. If you're comfortable troubleshooting on your own, I recommend Jekyll's own [troubleshooting documentation](http://jekyllrb.com/docs/troubleshooting/). Another great strategy for troubleshooting on the terminal is to copy and paste the errors you receive (sans personal information) into your favorite search engine.
|
80
80
|
|
81
81
|
The next step is to create a gemset for your jekyll projects. A gemset is a set of gems. If you don't create and use a gemset, every gem you install will be applied system-wide. This is not necessarily a bad thing, but if you will have several projects with several setups, this strategy will serve you well in the long run. To create a gemset:
|
82
82
|
|
@@ -134,7 +134,7 @@ theme: "ed."
|
|
134
134
|
You also need to add the gem to your Gemfile file:
|
135
135
|
|
136
136
|
~~~
|
137
|
-
gem "ed."
|
137
|
+
gem "ed."
|
138
138
|
~~~
|
139
139
|
|
140
140
|
Make sure to replace the version number with the one you need. I will do my best to document what changes come with each new gem. If your current theme does not have a Gemfile, you would need to create one and add the line above. The Gemfile is a plain text file like all other files in Jekyll, and should not have a file extension.
|
@@ -476,7 +476,7 @@ baseurl: ''
|
|
476
476
|
|
477
477
|
---
|
478
478
|
|
479
|
-
That should do it. If you have suggestions on how to improve Ed, make sure to leave us a line on [our issues page](https://github.com/
|
479
|
+
That should do it. If you have suggestions on how to improve Ed, make sure to leave us a line on [our issues page](https://github.com/minicomp/ed/issues), or send us a pull request.
|
480
480
|
|
481
481
|
Happy editing!
|
482
482
|
|