summaryrefslogtreecommitdiff
path: root/chef-x86-mingw32.gemspec
Commit message (Collapse)AuthorAgeFilesLines
* Bump win32-api to a ruby 2.0 compatible versionDaniel DeLeo2014-05-011-1/+1
|
* Resolve merge conflict with mixlib-shellout changeadamedx2014-01-021-1/+1
|\
| * Bump ffi version to 1.5.0Chris Lush2013-12-301-1/+1
| |
* | multiple dep lines no longer supported by bundlerLamont Granquist2013-12-311-1/+0
|/ | | | | | | | | | | | | | | | | | our attempt to let the unix gemspec float with semver ~> 1.2 and to pin the version exactly for windows (= 1.2.0) is no longer supported and rake install blows up: if rspec-mocks is semantically versioned, use: add_development_dependency 'rspec-mocks', '~> 2.13', '>= 2.13.0' WARNING: See http://guides.rubygems.org/specification-reference/ for help rake aborted! duplicate dependency on mixlib-shellout (= 1.2.0, ~> 1.2), (~> 1.2) use: add_runtime_dependency 'mixlib-shellout', '= 1.2.0, ~> 1.2', '~> 1.2' Tasks: TOP => install => package => gem => pkg/chef-11.10.0.alpha.1-x86-mingw32.gem (See full trace by running task with --trace) just remove the line from the windows spec and inherit from the unix spec.
* Remove systemu dependency from chef gem.sersut2013-10-181-1/+0
|
* gem version bumpsLamont Granquist2013-09-271-5/+7
| | | | | | | - adds mixlib-shellout to explicitly version pin it on windows - adds win32-mmap - bumps all versions to latest - ffi needs to still be 1.3.1
* use separate gemspec for windowsLamont Granquist2013-09-271-0/+18
- allows us to explicitly version pin in the gemspec on gem installs rather than getting different behavior from 'gem install' and 'bundle install' (gemspec vs. Gemfile). - the mingw deps had been in the Gemfile because it needed to be a group since gemspecs do not have groups. this builds two different gems for publication to rubygems instead. - see mixlib-shellout for the prototype of where this has been done (successfully).