tm_helper 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -4,7 +4,7 @@ Some useful utilities for Ruby development in TextMate.
4
4
 
5
5
  == Features
6
6
 
7
- * Formats output when running RSpec specs in TextMate using the RSpec TextMate bundle via the method +output+
7
+ * Formats output when running RSpec specs in TextMate using the RSpec TextMate bundle via the method +printout+
8
8
  * Namely, it escapes HTML and converts +\n+ characters to +<br/>+.
9
9
  * This is useful when using print statements to debug code while running specs in TextMate.
10
10
  * Supports forcing of logs to the Textmate window.
@@ -19,7 +19,7 @@ Include tm_helper into your Gemfile.
19
19
 
20
20
  == Usage
21
21
 
22
- Use +output+ as you would normally use +puts+. Output will be automatically formatted when running in an RSpec window.
22
+ Use +printout+ as you would normally use +puts+. Output will be automatically formatted when running in an RSpec window.
23
23
 
24
24
  If using spork with --drb, define TM_HELPER=true and TM_RSPEC=true in the shell before running spork.
25
25
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
@@ -31,7 +31,7 @@ if TmHelper.running_in_textmate? && TmHelper.running_rspec_bundle?
31
31
  end
32
32
  else
33
33
  module Kernel
34
- def output string
34
+ def printout string
35
35
  puts string
36
36
  end
37
37
  end
data/tm_helper.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tm_helper}
8
- s.version = "0.1.0"
8
+ s.version = "0.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["shock"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tm_helper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 1
8
+ - 2
9
9
  - 0
10
- version: 0.1.0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - shock