godo 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data.tar.gz.sig +0 -0
  2. data/History.txt +9 -0
  3. data/README.txt +7 -1
  4. data/lib/godo.rb +1 -1
  5. metadata +3 -3
  6. metadata.gz.sig +1 -2
data.tar.gz.sig CHANGED
Binary file
@@ -9,3 +9,12 @@
9
9
  * 1 minor fix
10
10
 
11
11
  * Removed some test fluff that got left in the release
12
+
13
+ === 1.0.5 / 2008-03-11
14
+
15
+ * Incorporated changes from Lee Marlow <lee.marlow@gmail.com>
16
+
17
+ * Project level .godo files
18
+ * Max depth in Finder
19
+ * Terminal.app sessions
20
+ * Nice job Lee!
data/README.txt CHANGED
@@ -1,5 +1,7 @@
1
1
  = godo
2
2
 
3
+ * version: 1.0.5
4
+ * released: 2008-03-11
3
5
  * http://simplyruby.rubyforge.org/godo
4
6
 
5
7
  == DESCRIPTION:
@@ -33,8 +35,12 @@ creating controllers for other unixen should be straightforward if they can be c
33
35
  godo is a rewrite of my original 'gp' script (http://matt.blogs.it/entries/00002674.html) which fixes
34
36
  a number of the deficiencies of that script, turns it into a gem, has a better name, and steals the
35
37
  idea of using heuristics to detect project types from Solomon White's gp variant (http://onrails.org/articles/2007/11/28/scripting-the-leopard-terminal).
38
+
39
+ godo now includes contributions from Lee Marlow <lee.marlow@gmail.com> including support for project
40
+ level .godo files to override the global configuration, support for Terminal.app, and maximum depth
41
+ support to speed up the finder.
36
42
 
37
- godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches.
43
+ godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches and forks.
38
44
 
39
45
  == FEATURES/PROBLEMS:
40
46
 
@@ -1,7 +1,7 @@
1
1
  require 'yaml'
2
2
 
3
3
  module Godo
4
- VERSION = '1.0.4'
4
+ VERSION = '1.0.5'
5
5
  LIBPATH = File.expand_path( File.dirname( __FILE__ ) )
6
6
 
7
7
  # When called with no arguments this will return the path to the gem
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: godo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Mower
@@ -78,7 +78,7 @@ dependencies:
78
78
  - !ruby/object:Gem::Version
79
79
  version: 1.5.1
80
80
  version:
81
- description: "go (to project) do (stuffs) godo provides a smart way of opening a project folder in multiple terminal tabs and, in each tab, invoking a commands appropriate to that project. For example if the folder contains a Rails project the actions might include: starting mongrel, tailing one or more logs, starting consoles or IRB sessions, tailing production logs, opening an editor, running autospec, or gitk. godo works by searching your project paths for a given search string and trying to match it against paths found in one or more configured project roots. It will make some straightforward efforts to disambiguate among multiple matches to find the one you want. godo then uses configurable heuristics to figure out what type of project it is, for example \"a RoR project using RSpec and Subversion\". From that it will invokes a series of action appropriate to the type of project detected with each action being run, from the project folder, in its own terminal session. godo is entirely configured by a YAML file (~/.godo) that contains project types, heuristics, actions, project paths, and a session controller. A sample configuration file is provided that can be installed using godo --install. godo comes with an iTerm session controller for MacOSX that uses the rb-appscript gem to control iTerm (see lib/session.rb and lib/sessions/iterm_session.rb). It should be relatively straightforward to add new controller (e.g. for Leopard Terminal.app), or a controller that works in a different way (e.g. by creating new windows instead of new tabs). There is nothing MacOSX specific about the rest of godo so creating controllers for other unixen should be straightforward if they can be controlled from ruby. godo is a rewrite of my original 'gp' script (http://matt.blogs.it/entries/00002674.html) which fixes a number of the deficiencies of that script, turns it into a gem, has a better name, and steals the idea of using heuristics to detect project types from Solomon White's gp variant (http://onrails.org/articles/2007/11/28/scripting-the-leopard-terminal). godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches."
81
+ description: "go (to project) do (stuffs) godo provides a smart way of opening a project folder in multiple terminal tabs and, in each tab, invoking a commands appropriate to that project. For example if the folder contains a Rails project the actions might include: starting mongrel, tailing one or more logs, starting consoles or IRB sessions, tailing production logs, opening an editor, running autospec, or gitk. godo works by searching your project paths for a given search string and trying to match it against paths found in one or more configured project roots. It will make some straightforward efforts to disambiguate among multiple matches to find the one you want. godo then uses configurable heuristics to figure out what type of project it is, for example \"a RoR project using RSpec and Subversion\". From that it will invokes a series of action appropriate to the type of project detected with each action being run, from the project folder, in its own terminal session. godo is entirely configured by a YAML file (~/.godo) that contains project types, heuristics, actions, project paths, and a session controller. A sample configuration file is provided that can be installed using godo --install. godo comes with an iTerm session controller for MacOSX that uses the rb-appscript gem to control iTerm (see lib/session.rb and lib/sessions/iterm_session.rb). It should be relatively straightforward to add new controller (e.g. for Leopard Terminal.app), or a controller that works in a different way (e.g. by creating new windows instead of new tabs). There is nothing MacOSX specific about the rest of godo so creating controllers for other unixen should be straightforward if they can be controlled from ruby. godo is a rewrite of my original 'gp' script (http://matt.blogs.it/entries/00002674.html) which fixes a number of the deficiencies of that script, turns it into a gem, has a better name, and steals the idea of using heuristics to detect project types from Solomon White's gp variant (http://onrails.org/articles/2007/11/28/scripting-the-leopard-terminal). godo now includes contributions from Lee Marlow <lee.marlow@gmail.com> including support for project level .godo files to override the global configuration, support for Terminal.app, and maximum depth support to speed up the finder. godo lives at the excellent GitHub: http://github.com/mmower/godo/ and accepts patches and forks."
82
82
  email:
83
83
  - self@mattmower.com
84
84
  executables:
@@ -103,7 +103,7 @@ files:
103
103
  - lib/sessions/iterm_session.rb
104
104
  - lib/sessions/terminal_session.rb
105
105
  has_rdoc: true
106
- homepage: http://simplyruby.rubyforge.org/godo
106
+ homepage: "version: 1.0.5"
107
107
  post_install_message:
108
108
  rdoc_options:
109
109
  - --main
metadata.gz.sig CHANGED
@@ -1,2 +1 @@
1
- ���t�@)��ng�����f���|��3Hz^q�>Z�Xw��݆ g�;(z3J��:w���c��W ����cu��:5�=fP.Je�`��.`�I�@k����IQz��G�ސ�rJ�z�6^�����n��c98@�iƳc9����Ln3>qSC1[
2
- (�K㯁"MS��> 3d�,F&M˼y�O�����>LD`e�oý_�T+�j��*���C���v
1
+ P�jc#a�.L�4�Vj����F9_�T�����lVq