jekylljournal 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 808c566dc3cb7cd4bef697ba46feee5cddc8e6ca
4
- data.tar.gz: 88e29c5566acd56d153cd59318f3f3190c00d783
3
+ metadata.gz: d590683e4b622147a0cd692c1606fde089106682
4
+ data.tar.gz: 595d94723d1eaaec0c0976f3591666f25724ce6b
5
5
  SHA512:
6
- metadata.gz: 69c5e8f2c713e819e81504956412c0784dc16f5b7efe5e53f4a2a601ed072fe36475b30c6e1b824c3e05d57cf43f6689ebb15e8cbfb862a9cce1565f47a1fe18
7
- data.tar.gz: 2349908abdf03b4807bb8d4a03fade55fba49149e3294a19096e5819ef31f63b6fa3300aa3c9485dd09ed8f5661764dbdcd40db89ca28b0db1f36f6f709bc646
6
+ metadata.gz: 6d70c88fb44ba195b9f9fe65d6a716990ec6fd665afd07e996a76a4684b82691067291e4d4c3136dcb2ce8e6ea720abd1cda9c42f31501c3f066afab3153ee05
7
+ data.tar.gz: eb67b1716732da6a46faf3c6a4871dfeae209f9d6fb30227ed802b6a805364a76fb8c9b947ef11da99013f484056a5b568fa512c62dff68f4b203de0ee22b20b
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0
4
+ - 2.1
5
+ - 2.2
6
+ - 2.3.0
7
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,30 @@
1
+ # Contributing
2
+
3
+ If you find this app useful, please consider contributing to its
4
+ development. There are plenty of wish-list features in the
5
+ [bug tracker][bugtracker].
6
+
7
+ To get started, fork the repo, have a look around, and try building
8
+ the gem:
9
+
10
+ gem build jekylljournal.gemspec
11
+
12
+ This should succeed, if not, please log a bug.
13
+
14
+ Then, find an issue (or log one) and add a comment saying that
15
+ you'd like to work on it. (So that we don't end up with duplicate
16
+ effort.)
17
+ Make some changes for whatever you're working on, and try them out
18
+ with:
19
+
20
+ bundle exec bin/jekylljournal
21
+
22
+ Writing tests is always a good idea too.
23
+
24
+ Once it looks good, write up a [good commit message][commit].
25
+ Push to your fork and submit a pull request. Be sure to mention
26
+ the issue number you were working on in the bug tracker so that
27
+ they're linked up.
28
+
29
+ [bugtracker]: https://github.com/lorentrogers/jekylljournal/issues
30
+ [commit]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
@@ -2,10 +2,13 @@
2
2
 
3
3
  A super awesome way of writing daily blog posts with Jekyll.
4
4
 
5
+ It's like `git commit` but for real life.
6
+
5
7
  {<img src="https://badge.fury.io/rb/jekylljournal.svg" alt="Gem Version" />}[https://badge.fury.io/rb/jekylljournal]
6
8
  {<img src="https://codeclimate.com/github/lorentrogers/jekylljournal/badges/gpa.svg" />}[https://codeclimate.com/github/lorentrogers/jekylljournal]
7
9
  {<img src="https://codeclimate.com/github/lorentrogers/jekylljournal/badges/coverage.svg" />}[https://codeclimate.com/github/lorentrogers/jekylljournal/coverage]
8
10
  {<img src="https://gemnasium.com/lorentrogers/jekylljournal.svg" alt="Dependency Status" />}[https://gemnasium.com/lorentrogers/jekylljournal]
11
+ {<img src="https://img.shields.io/gem/dt/jekylljournal.svg" alt="Gem Downloads" />}[https://rubygems.org/gems/jekylljournal]
9
12
 
10
13
  It's based on this proof of concept, built with bash:
11
14
  https://github.com/lorentrogers/Journal.sh
@@ -25,13 +28,41 @@ below.
25
28
  == Custom Alias
26
29
 
27
30
  It's super handy to map an alias to this app. My configuration just uses
28
- `j` to open up my daily journal. Pretty slick, if I do say so myself.
29
- Which I do.
31
+ `j` to open up my daily journal.
30
32
 
31
33
  Here's what's in my `.zshrc` file:
32
34
 
33
35
  alias j="jekylljournal"
34
36
 
37
+ == Usage
38
+
39
+ Once you've installed it, and set up your config file, you're ready to go:
40
+
41
+ j
42
+
43
+ Boom.
44
+
45
+ You should have Vim open to today's post.
46
+
47
+ Once you've finished, save the file and close it. Then you can save the journal to git:
48
+
49
+ j s
50
+
51
+ Or preview it if you like:
52
+
53
+ j p
54
+
55
+ Now you can browse to
56
+
57
+ localhost:4000
58
+
59
+ and check out your post.
60
+
61
+ == Contributing
62
+
63
+ Contributions are very welcome. Have a look at
64
+ `CONTRIBUTING.md` for details.
65
+
35
66
  == Project Links
36
67
 
37
68
  Gem on Rubygems:
@@ -43,9 +74,6 @@ https://github.com/lorentrogers/jekylljournal/issues
43
74
  Source on Github:
44
75
  https://github.com/lorentrogers/jekylljournal
45
76
 
46
- Project management on Taiga:
47
- https://tree.taiga.io/project/lorentrogers-jekyll-journal/kanban
48
-
49
77
  Features are written as Job Stories:
50
78
  https://robots.thoughtbot.com/converting-to-jobs-stories
51
79
 
@@ -32,6 +32,7 @@ module Jekylljournal
32
32
  ---
33
33
  layout: post
34
34
  title: #{today}
35
+ tags: []
35
36
  ---
36
37
 
37
38
  eol
@@ -1,3 +1,3 @@
1
1
  module Jekylljournal
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekylljournal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Loren Rogers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-26 00:00:00.000000000 Z
11
+ date: 2016-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -91,6 +91,8 @@ extra_rdoc_files:
91
91
  files:
92
92
  - ".gitignore"
93
93
  - ".ruby-version"
94
+ - ".travis.yml"
95
+ - CONTRIBUTING.md
94
96
  - COPYING
95
97
  - Gemfile
96
98
  - README.rdoc
@@ -137,8 +139,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
137
139
  version: '0'
138
140
  requirements: []
139
141
  rubyforge_project:
140
- rubygems_version: 2.4.6
142
+ rubygems_version: 2.5.1
141
143
  signing_key:
142
144
  specification_version: 4
143
145
  summary: A super awesome way of writing daily blog posts with Jekyll.
144
146
  test_files: []
147
+ has_rdoc: true