dysinger-rush 0.4 → 0.4.1221060147

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/lib/rush/commands.rb CHANGED
@@ -40,16 +40,4 @@ module Rush::Commands
40
40
  count
41
41
  end
42
42
  end
43
-
44
- # Invoke vi on one or more files - only works locally.
45
- def vi(*args)
46
- names = entries.map { |f| f.full_path }.join(' ')
47
- system "vim #{names} #{args.join(' ')}"
48
- end
49
-
50
- # Invoke TextMate on one or more files - only works locally.
51
- def mate(*args)
52
- names = entries.map { |f| f.full_path }.join(' ')
53
- system "mate #{names} #{args.join(' ')}"
54
- end
55
43
  end
data/lib/rush/dir.rb CHANGED
@@ -140,16 +140,6 @@ class Rush::Dir < Rush::Entry
140
140
  out.join("\n")
141
141
  end
142
142
 
143
- # Run rake within this dir.
144
- def rake(*args)
145
- bash "rake #{args.join(' ')}"
146
- end
147
-
148
- # Run git within this dir.
149
- def git(*args)
150
- bash "git #{args.join(' ')}"
151
- end
152
-
153
143
  include Rush::Commands
154
144
 
155
145
  def entries
data/spec/process_spec.rb CHANGED
@@ -34,7 +34,7 @@ describe Rush::Process do
34
34
  end
35
35
 
36
36
  it "knows the executed binary" do
37
- @process.command.should match(/^ruby/)
37
+ @process.command.should match(/ruby/)
38
38
  end
39
39
 
40
40
  it "knows the command line" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dysinger-rush
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.4"
4
+ version: 0.4.1221060147
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Wiggins