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
VERSION = '0.0.2'
end

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

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

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

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


class Pik
VERSION = '0.0.3'
end

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

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

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

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

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

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gordon Thiesfeld"]
s.date = %q{2009-06-02}
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
your different ruby versions are located using 'pik add'. Then you can change to one by using
'pik switch'.
It also has a "sort of" multiruby functionality in 'pik run'.}
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"]
s.homepage = %q{http://github.com/vertiginous/pik/tree/master}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{pik}
s.rubygems_version = %q{1.3.4}
s.summary = %q{PIK is a tool to switch between multiple versions of ruby on Windows}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<highline>, [">= 0"])
s.add_development_dependency(%q<hoe>, [">= 1.12.2"])
else
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 1.12.2"])
end
else
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 1.12.2"])
end
end
# -*- encoding: utf-8 -*-

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Gordon Thiesfeld"]
s.date = %q{2009-07-10}
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
your different ruby versions are located using 'pik add'. Then you can change to one by using
'pik switch'.
It also has a "sort of" multiruby functionality in 'pik run'.}
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"]
s.homepage = %q{http://github.com/vertiginous/pik/tree/master
}
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{pik}
s.rubygems_version = %q{1.3.4}
s.summary = %q{PIK is a tool to switch between multiple versions of ruby on Windows}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<highline>, [">= 0"])
s.add_development_dependency(%q<hoe>, [">= 2.3.2"])
else
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<hoe>, [">= 2.3.2"])
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.