Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump win32-api to a ruby 2.0 compatible version | Daniel DeLeo | 2014-05-01 | 1 | -1/+1 |
| | |||||
* | Resolve merge conflict with mixlib-shellout change | adamedx | 2014-01-02 | 1 | -1/+1 |
|\ | |||||
| * | Bump ffi version to 1.5.0 | Chris Lush | 2013-12-30 | 1 | -1/+1 |
| | | |||||
* | | multiple dep lines no longer supported by bundler | Lamont Granquist | 2013-12-31 | 1 | -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. | sersut | 2013-10-18 | 1 | -1/+0 |
| | |||||
* | gem version bumps | Lamont Granquist | 2013-09-27 | 1 | -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 windows | Lamont Granquist | 2013-09-27 | 1 | -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). |