pik 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.1.1 / 2009-09-25
2
+
3
+ * add rubyforge info to README
4
+ * Fixes bug in add command that wouldn't allow you to add - GH-13
5
+
1
6
  === 0.1.0 / 2009-09-24
2
7
 
3
8
  * removed jruby support for the time being (lack of win32ole is a problem)
data/README.rdoc CHANGED
@@ -1,6 +1,7 @@
1
1
  = pik
2
2
 
3
3
  http://github.com/vertiginous/pik
4
+ http://rubyforge.org/projects/pik/
4
5
 
5
6
  Gordon Thiesfeld
6
7
 
data/lib/pik.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Pik
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
4
4
 
5
5
  require 'highline'
@@ -23,6 +23,7 @@ module Pik
23
23
  version = get_version(path)
24
24
  path = path.expand_path.to_ruby
25
25
  puts "Adding: #{version}'\n Located at: #{path}\n"
26
+ @config[version] = {}
26
27
  @config[version][:path] = path
27
28
  end
28
29
  else
@@ -6,7 +6,7 @@ module Pik
6
6
 
7
7
  def initialize
8
8
  @file = File.join(PIK_HOME, 'config.yml')
9
- super{|h,k| h[k] = Hash.new }
9
+ super
10
10
  if File.exists? @file
11
11
  self.update( YAML.load( File.read( @file ) ) )
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pik
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gordon Thiesfeld
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-24 00:00:00 -05:00
12
+ date: 2009-09-25 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency