projmgr 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.
Files changed (6) hide show
  1. data/NEWS.md +18 -16
  2. data/TODO.md +11 -13
  3. data/bin/projmgr +1 -0
  4. data/lib/projmgr.rb +1 -1
  5. data/projmgr.gemspec +2 -2
  6. metadata +12 -8
data/NEWS.md CHANGED
@@ -1,20 +1,22 @@
1
- 0.0.4 (January 09, 2011)
2
- ===
3
- - Fixed output error
1
+ # 0.0.5 (February 07, 2011)
2
+ - Minor version bump
3
+ - Fixed the dependencies to stop installing an old version of rspec
4
+ - Fixed formatting of this NEWS.md
5
+ - Fixed formatting of TODO.md
4
6
 
5
- 0.0.3 (January 09, 2011)
6
- ===
7
- - Added rspec tests for the Scm class
8
- - Remove unnessesary requires from the library and moved them to the binary
9
- - Add support for checkout/clone for SVN and GIT
10
- - Add checks to see if the paths exist for each call that uses @path
11
- - Optimized most of the code
7
+ # 0.0.4 (January 09, 2011)
8
+ - Fixed output error
9
+
10
+ # 0.0.3 (January 09, 2011)
11
+ - Added rspec tests for the Scm class
12
+ - Remove unnecessary requires from the library and moved them to the binary
13
+ - Add support for checkout/clone for SVN and GIT
14
+ - Add checks to see if the paths exist for each call that uses @path
15
+ - Optimized most of the code
12
16
 
13
- 0.0.2 (January 04, 2011)
14
- ===
15
- - Minor bug fixes/typos
17
+ # 0.0.2 (January 04, 2011)
18
+ - Minor bug fixes/typos
16
19
 
17
- 0.0.1 (December 27, 2010)
18
- ===
19
- - Initial development
20
+ # 0.0.1 (December 27, 2010)
21
+ - Initial development
20
22
 
data/TODO.md CHANGED
@@ -1,15 +1,13 @@
1
- TODO
2
- ===
1
+ # TODO
3
2
 
4
- 0.0.5
5
- ---
6
- - Add a detect option, to find projects in a directory not managed
7
- - Add support for other SCM's
8
- - CVS
9
- - Mercurial
10
- - Add more rspec tests
11
- - Git Class
12
- - Svn Class
13
- - Application class
14
- - Cvs Class
3
+ ## 0.0.6 (February 25, 2011)
4
+ - Add a detect option, to find projects in a directory not managed
5
+ - Add support for other SCM's
6
+ - CVS
7
+ - Mercurial
8
+ - Add more rspec tests
9
+ - Git Class
10
+ - Svn Class
11
+ - Application class
12
+ - Cvs Class
15
13
 
@@ -9,6 +9,7 @@
9
9
  # hammackj - 01-05-2011 - Version 0.0.2
10
10
  # hammackj - 01-09-2011 - Version 0.0.3
11
11
  # hammackj - 01-09-2011 - Version 0.0.4
12
+ # hammackj - 02-07-2011 - Version 0.0.5
12
13
  #
13
14
 
14
15
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '/../lib'))
@@ -2,7 +2,7 @@
2
2
 
3
3
  module ProjMgr
4
4
  APP_NAME = "projmgr"
5
- VERSION = "0.0.4"
5
+ VERSION = "0.0.5"
6
6
  CONFIG_FILE = "~/.projmgr"
7
7
  end
8
8
 
@@ -24,8 +24,8 @@ Gem::Specification.new do |s|
24
24
  s.required_rubygems_version = ">= 1.3.6"
25
25
  s.rubyforge_project = ProjMgr::APP_NAME
26
26
 
27
- s.add_development_dependency "rspec"
28
- s.add_development_dependency "rcov"
27
+ s.add_development_dependency("rspec", ">= 2.4.0")
28
+ s.add_development_dependency("rcov", ">= 0.9.9")
29
29
 
30
30
  s.has_rdoc = 'yard'
31
31
  s.extra_rdoc_files = ["README.md", "LICENSE", "NEWS.md", "TODO.md"]
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: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jacob Hammack
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-09 00:00:00 -06:00
18
+ date: 2011-02-07 00:00:00 -06:00
19
19
  default_executable: projmgr
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,10 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 3
29
+ hash: 31
30
30
  segments:
31
+ - 2
32
+ - 4
31
33
  - 0
32
- version: "0"
34
+ version: 2.4.0
33
35
  type: :development
34
36
  version_requirements: *id001
35
37
  - !ruby/object:Gem::Dependency
@@ -40,10 +42,12 @@ dependencies:
40
42
  requirements:
41
43
  - - ">="
42
44
  - !ruby/object:Gem::Version
43
- hash: 3
45
+ hash: 41
44
46
  segments:
45
47
  - 0
46
- version: "0"
48
+ - 9
49
+ - 9
50
+ version: 0.9.9
47
51
  type: :development
48
52
  version_requirements: *id002
49
53
  - !ruby/object:Gem::Dependency