projmgr 0.0.3 → 0.0.4

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.
Files changed (5) hide show
  1. data/NEWS.md +4 -0
  2. data/TODO.md +1 -1
  3. data/bin/projmgr +4 -3
  4. data/lib/projmgr.rb +1 -1
  5. metadata +4 -4
data/NEWS.md CHANGED
@@ -1,3 +1,7 @@
1
+ 0.0.4 (January 09, 2011)
2
+ ===
3
+ - Fixed output error
4
+
1
5
  0.0.3 (January 09, 2011)
2
6
  ===
3
7
  - Added rspec tests for the Scm class
data/TODO.md CHANGED
@@ -1,7 +1,7 @@
1
1
  TODO
2
2
  ===
3
3
 
4
- 0.0.4
4
+ 0.0.5
5
5
  ---
6
6
  - Add a detect option, to find projects in a directory not managed
7
7
  - Add support for other SCM's
data/bin/projmgr CHANGED
@@ -1,13 +1,14 @@
1
1
  #!/usr/bin/env ruby
2
2
  # encoding: utf-8
3
3
 
4
- # projmgr - A source code control managment tool
4
+ # projmgr - ProjMgr is a simple source code project manager for updating and checking local changes on multiple projects at once.
5
5
  # Jacob Hammack <jacob.hammack@hammackj.com>
6
6
  # http://www.hammackj.com
7
7
  #
8
8
  # hammackj - 12-27-2010 - Version 0.0.1
9
9
  # hammackj - 01-05-2011 - Version 0.0.2
10
10
  # hammackj - 01-09-2011 - Version 0.0.3
11
+ # hammackj - 01-09-2011 - Version 0.0.4
11
12
  #
12
13
 
13
14
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/../lib'))
@@ -136,8 +137,8 @@ module ProjMgr
136
137
 
137
138
  if status[0] == true
138
139
  print "[!] #{@repos[key]['name']} has local changes\n"
139
- else
140
- print "[!] #{@repos[key]['name']} #{status[1]}\n"
140
+ #else
141
+ # print "[!] #{@repos[key]['name']} #{status[1]}\n"
141
142
  end
142
143
  elsif Choice.choices[:update] != nil
143
144
  print "[*] Updating #{@repos[key]['name']}...\n #{repo.update}\n"
data/lib/projmgr.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module ProjMgr
4
4
  APP_NAME = "projmgr"
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
  CONFIG_FILE = "~/.projmgr"
7
7
  end
8
8
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: projmgr
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jacob Hammack
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  requirements: []
119
119
 
120
120
  rubyforge_project: projmgr
121
- rubygems_version: 1.4.1
121
+ rubygems_version: 1.4.2
122
122
  signing_key:
123
123
  specification_version: 3
124
124
  summary: projmgr