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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f5c0dffd98bb54cee47cca869b1229fe10f9c08b
4
- data.tar.gz: 9428148bdb53464b5412a33ebb7a55e61e882692
3
+ metadata.gz: ed6ff98ba39de458b045dbe1640565a79ebb61b5
4
+ data.tar.gz: 181e12fab598257136e337327994231b46a25167
5
5
  SHA512:
6
- metadata.gz: 6815db1785674fc75630d6f83c353d2a160242ef691ac5c0f9f31efc0b509e6684bdbc293c49b7afb8085198f28a37083cd2dacad6491a6ad4d0db272decbc88
7
- data.tar.gz: 67c15e475a5b59d2ea9a40bc5726254465ec4dcf1ed79dec8c81f4f55da255c351484b3db69480b4a82b71b7b0cb766b01f37910a2240c6f252551c8f94fdf1b
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
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. `rackup` will allow you to run a development instance of the app. `rake -T` for other commands.
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
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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
@@ -1,3 +1,3 @@
1
1
  module MarkdownExplorer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-06-27 00:00:00.000000000 Z
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
data/config.ru DELETED
@@ -1,7 +0,0 @@
1
- require "rubygems"
2
- require "bundler"
3
-
4
- Bundler.require
5
-
6
- require_relative "./lib/markdown_explorer/application"
7
- run MarkdownExplorer::Application