markdown_explorer 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -2
- data/lib/markdown_explorer/version.rb +1 -1
- metadata +2 -3
- data/config.ru +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed6ff98ba39de458b045dbe1640565a79ebb61b5
|
4
|
+
data.tar.gz: 181e12fab598257136e337327994231b46a25167
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bbe5c247414d00a8d78aa3417802c3334eeedb6f98af8bedaf3a158248a48dc2eef5fc1bf5c50c7001facd1da37d23ed2440d0ce00d8438b9edd4be4de32ab5
|
7
|
+
data.tar.gz: 30237e70b09d8940c64c2a4244c797e03fe576ae353c13b7bad72401235bcb3ab83de8ed75c11fcedb035028fc2617ade08a233a261aa093f11bbfd5268e4a9a
|
data/README.md
CHANGED
@@ -7,7 +7,9 @@ Currently, only read functionality is implemented.
|
|
7
7
|
|
8
8
|
## Installation
|
9
9
|
|
10
|
+
```bash
|
10
11
|
$ gem install markdown_explorer
|
12
|
+
```
|
11
13
|
|
12
14
|
|
13
15
|
## Usage
|
@@ -25,9 +27,23 @@ Then, navigate to <http://localhost:8080> in your browser
|
|
25
27
|
|
26
28
|
## Development
|
27
29
|
|
28
|
-
|
30
|
+
Use the [fork-and-branch](http://blog.scottlowe.org/2015/01/27/using-fork-branch-git-workflow/) workflow to contribute.
|
31
|
+
|
32
|
+
```bash
|
33
|
+
$ cd markdown_explorer
|
34
|
+
$ ./bin/setup # install dependencies
|
35
|
+
$ rake spec # run the test suite
|
36
|
+
$ ./bin/console # open the interactive prompt
|
37
|
+
$ ./exe/mdexplore # run the application
|
38
|
+
$ rake -T # view rake commands
|
39
|
+
```
|
40
|
+
|
41
|
+
Other commands:
|
29
42
|
|
30
|
-
|
43
|
+
```bash
|
44
|
+
$ rake install:local # install gem locally
|
45
|
+
$ rake release # release to RubyGems.org (bump version.rb, first)
|
46
|
+
```
|
31
47
|
|
32
48
|
|
33
49
|
## TODO
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown_explorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Davis
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -113,7 +113,6 @@ files:
|
|
113
113
|
- Rakefile
|
114
114
|
- bin/console
|
115
115
|
- bin/setup
|
116
|
-
- config.ru
|
117
116
|
- exe/mdexplore
|
118
117
|
- image.png
|
119
118
|
- lib/markdown_explorer.rb
|