backtik-red-herring 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -8,11 +8,14 @@ Herring is installed as gem.
8
8
  gem sources -a http://gems.github.com
9
9
  sudo gem install backtik-red-herring
10
10
 
11
- Generating
11
+ Generating or Initializing
12
12
  You can generate a new Herring structure with the herring command
13
13
  cd /path/to/some/folder
14
14
  herring some_name
15
-
15
+ OR
16
+ You can initialize an existing directory with the --init option
17
+ cd /path/to/some/herring/folder
18
+ herring --init
16
19
 
17
20
  Using
18
21
  Herring runs atop Rack. You can run Herring with Rack's rackup command. The default port is :9292
@@ -1,4 +1,4 @@
1
- require 'red-herring'
1
+ require 'herring'
2
2
 
3
3
  use Rack::ShowExceptions
4
4
  run Rack::Herring.new
@@ -1,5 +1,5 @@
1
1
  module Herring
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
4
4
 
5
5
  $:.unshift(File.join(File.dirname(__FILE__), 'herring'))
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{red-herring}
3
- s.version = "0.0.2"
3
+ s.version = "0.0.3"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["Trek Glowacki"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backtik-red-herring
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trek Glowacki