sinatra_debug_console 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/VERSION +1 -1
  2. data/examples/app.rb +6 -0
  3. metadata +4 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.2.0
@@ -0,0 +1,6 @@
1
+ # % ruby app.rb
2
+ # see http://localhost:4567/debug_console
3
+
4
+ require 'sinatra'
5
+ require 'sinatra_debug_console'
6
+ Sinatra::DebugConsole.config('admin', 'password')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra_debug_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - jugyo
@@ -27,6 +27,7 @@ files:
27
27
  - README.rdoc
28
28
  - Rakefile
29
29
  - VERSION
30
+ - examples/app.rb
30
31
  - lib/sinatra_debug_console.rb
31
32
  has_rdoc: true
32
33
  homepage: http://github.com/jugyo/sinatra_debug_console
@@ -56,5 +57,5 @@ rubygems_version: 1.3.5
56
57
  signing_key:
57
58
  specification_version: 3
58
59
  summary: Debug console for sinatra
59
- test_files: []
60
-
60
+ test_files:
61
+ - examples/app.rb