Sha256: 65a1d5a40bc8a8292257baa4be3eab2a6d052a7df039401c871585df855cda8c

Contents?: true

Size: 1.31 KB

Versions: 13

Compression:

Stored size: 1.31 KB

Contents

# NugetHelper [![Build Status](https://travis-ci.org/wallymathieu/nuget_helper.svg)](https://travis-ci.org/wallymathieu/nuget_helper) [![Build status](https://ci.appveyor.com/api/projects/status/jabjjby3t7m87net/branch/master?svg=true)](https://ci.appveyor.com/project/wallymathieu/nuget-helper/branch/master)

Helper library to simplify the use of nuget in a mixed os environment. It uses [nuget](https://rubygems.org/gems/nuget).

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'nuget_helper'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install nuget_helper

## Usage

```ruby
desc "Install missing NuGet packages."
task :install_packages do
  NugetHelper.exec("restore LogViewer.sln")
end
```

To test together with [albacore](https://github.com/Albacore/albacore)

```ruby
desc "test using console"
test_runner :test => [:build] do |runner|
  runner.exe = NugetHelper.nunit_path
  files = Dir.glob(File.join($dir,"*Tests","bin","**","*Tests.dll"))
  runner.files = files 
end
```

## Contributing

1. Fork it ( https://github.com/wallymathieu/nuget_helper/fork )
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 a new Pull Request

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
nuget_helper-1.0.1 README.md
nuget_helper-1.0.0 README.md
nuget_helper-0.3.0 README.md
nuget_helper-0.2.0 README.md
nuget_helper-0.1.0 README.md
nuget_helper-0.0.12 README.md
nuget_helper-0.0.11 README.md
nuget_helper-0.0.10 README.md
nuget_helper-0.0.9 README.md
nuget_helper-0.0.8 README.md
nuget_helper-0.0.7 README.md
nuget_helper-0.0.6 README.md
nuget_helper-0.0.5 README.md