thor_tasks 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --colour
2
+ --format d
data/lib/tasks/spec.thor CHANGED
@@ -40,7 +40,7 @@ class Spec < Thor
40
40
  method_option :bundle, :type => :boolean, :aliases => "-b"
41
41
  def routing(name = "*")
42
42
  b = options[:bundle] ? "bundle exec" : ""
43
- run "#{b} rspec spec/routing/#{name}_spec.rb"
43
+ run "#{b} rspec spec/routing/#{name}_routing_spec.rb"
44
44
  end
45
45
 
46
46
  desc "view [CONTROLLER] [ACTION]", "runs rspec for views"
@@ -1,3 +1,3 @@
1
1
  module ThorTasks
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 4
9
- version: 0.0.4
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Travis Haynes
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-06-09 00:00:00 -07:00
17
+ date: 2011-06-10 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -29,6 +29,7 @@ extra_rdoc_files: []
29
29
 
30
30
  files:
31
31
  - .gitignore
32
+ - .rspec
32
33
  - Gemfile
33
34
  - README.rdoc
34
35
  - Rakefile