source_control 0.0.1 → 0.0.2

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 (3) hide show
  1. data/Rakefile +2 -1
  2. data/lib/source_control.rb +1 -1
  3. metadata +2 -2
data/Rakefile CHANGED
@@ -1,6 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'hoe'
3
- require './lib/source_control.rb'
3
+ $: << File.expand_path('./lib')
4
+ require 'source_control'
4
5
 
5
6
  Hoe.new('source_control', SourceControl::VERSION) do |p|
6
7
  p.author = ['Jamie Macey', 'Steven Baker']
@@ -11,7 +11,7 @@ require 'source_control/subversion'
11
11
  require 'source_control/svk'
12
12
 
13
13
  module SourceControl
14
- VERSION = '0.0.1'
14
+ VERSION = '0.0.2'
15
15
 
16
16
  # Magic creation method. If a local repository is in an unknown
17
17
  # version control system, this method uses a heuristic to determine
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: source_control
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
7
- date: 2007-02-17 00:00:00 -08:00
6
+ version: 0.0.2
7
+ date: 2007-02-20 00:00:00 -08:00
8
8
  summary: SourceControl is a library to provide abstract access to version control systems
9
9
  require_paths:
10
10
  - lib