Skip to content

Commit

Permalink
bumped to version 0.0.3. updated gemspec. commits are messed up, beca…
Browse files Browse the repository at this point in the history
…use I changed git linefeed settings.
  • Loading branch information
vertiginous committed Jul 10, 2009
1 parent 6408bae commit 39f02a6
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 64 deletions.
44 changes: 22 additions & 22 deletions lib/pik.rb
@@ -1,22 +1,22 @@
class Pik class Pik
VERSION = '0.0.2' VERSION = '0.0.3'
end end


$LOAD_PATH.unshift(File.dirname(__FILE__)) $LOAD_PATH.unshift(File.dirname(__FILE__))


require 'erb' require 'erb'
require 'highline' require 'highline'
require 'fileutils' require 'fileutils'
require 'rbconfig' require 'rbconfig'


require 'pik/runner' require 'pik/runner'
require 'pik/config' require 'pik/config'
require 'pik/checkup' require 'pik/checkup'
require 'pik/windows_file' require 'pik/windows_file'
require 'pik/windows_env' require 'pik/windows_env'
require 'pik/batch_file' require 'pik/batch_file'
require 'pik/search_path' require 'pik/search_path'


PIK_HOME = File.join( (ENV['HOME'] || ENV['USERPROFILE']) , '.pik') PIK_HOME = File.join( (ENV['HOME'] || ENV['USERPROFILE']) , '.pik')



89 changes: 47 additions & 42 deletions pik.gemspec
@@ -1,42 +1,47 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{pik} s.name = %q{pik}
s.version = "0.0.2" s.version = "0.0.3"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gordon Thiesfeld"] s.authors = ["Gordon Thiesfeld"]
s.date = %q{2009-06-02} s.date = %q{2009-07-10}
s.default_executable = %q{pik} s.default_executable = %q{pik}
s.description = %q{PIK is a tool to switch between multiple versions of ruby on Windows. You have to tell it where s.description = %q{PIK is a tool to switch between multiple versions of ruby on Windows. You have to tell it where
your different ruby versions are located using 'pik add'. Then you can change to one by using
'pik switch'. your different ruby versions are located using 'pik add'. Then you can change to one by using
It also has a "sort of" multiruby functionality in 'pik run'.} 'pik switch'.
s.email = ["gthiesfeld@gmail.com"]
s.executables = ["pik"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/pik", "lib/pik.rb", "lib/pik/batch_file.rb", "lib/pik/checkup.rb", "lib/pik/config.rb", "lib/pik/runner.rb", "lib/pik/search_path.rb", "lib/pik/windows_env.rb", "lib/pik/windows_file.rb", "messages/messages.yml", "spec/batch_file_spec.rb", "spec/search_path_spec.rb"] It also has a "sort of" multiruby functionality in 'pik run'.}
s.homepage = %q{http://github.com/vertiginous/pik/tree/master} s.email = ["gthiesfeld@gmail.com"]
s.rdoc_options = ["--main", "README.txt"] s.executables = ["pik"]
s.require_paths = ["lib"] s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.rubyforge_project = %q{pik} s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/pik", "lib/pik.rb", "lib/pik/batch_file.rb", "lib/pik/checkup.rb", "lib/pik/config.rb", "lib/pik/runner.rb", "lib/pik/search_path.rb", "lib/pik/windows_env.rb", "lib/pik/windows_file.rb", "messages/messages.yml", "spec/batch_file_spec.rb", "spec/search_path_spec.rb"]
s.rubygems_version = %q{1.3.4} s.homepage = %q{http://github.com/vertiginous/pik/tree/master
s.summary = %q{PIK is a tool to switch between multiple versions of ruby on Windows} }

s.rdoc_options = ["--main", "README.txt"]
if s.respond_to? :specification_version then s.require_paths = ["lib"]
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.rubyforge_project = %q{pik}
s.specification_version = 3 s.rubygems_version = %q{1.3.4}

s.summary = %q{PIK is a tool to switch between multiple versions of ruby on Windows}
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<highline>, [">= 0"]) if s.respond_to? :specification_version then
s.add_development_dependency(%q<hoe>, [">= 1.12.2"]) current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
else s.specification_version = 3
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 1.12.2"]) if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
end s.add_runtime_dependency(%q<highline>, [">= 0"])
else s.add_development_dependency(%q<hoe>, [">= 2.3.2"])
s.add_dependency(%q<highline>, [">= 0"]) else
s.add_dependency(%q<hoe>, [">= 1.12.2"]) s.add_dependency(%q<highline>, [">= 0"])
end s.add_dependency(%q<hoe>, [">= 2.3.2"])
end end
else
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 2.3.2"])
end
end

0 comments on commit 39f02a6

Please sign in to comment.