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 +0 -12
- data/lib/rush/dir.rb +0 -10
- data/spec/process_spec.rb +1 -1
- metadata +1 -1
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