0.0
No commit activity in last 3 years
No release in over 3 years
Provides an API to add and remove values from Windows' system PATH variable
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
 Project Readme

WinPathUtils

This gem allows you to manupulate Windows' system PATH variable via registry. It provides convenient methods to add and remove items to PATH.

Installation

Add this line to your application's Gemfile:

gem 'win-path-utils'

And then execute:

$ bundle

Or install it yourself as:

$ gem install win-path-utils

Usage

require 'win-path-utils'

path = WinPathUtils::Path.new

# Get the PATH
path_value = path.get      # => "C:\Ruby\bin;C:\..."

# Append something
path.append('C:\test\at\the\end')

# Prepend something
path.prepend('C:\test\at\the\beginning')

# Get the PATH now - it's updated
new_path_value = path.get  # => "C:\test\at\the\beginning;C:\Ruby\bin;C:\..."

# Remove something
path.remove('C:\test')

Just read the code, it's pretty straightforward.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request