summaryrefslogtreecommitdiff
path: root/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* Solaris builds are failing because bundler-audit depends on Thor, which has ↵tyler-ball2016-01-211-2/+5
| | | | a filename with a space in it. Bundler-audit is only needed for Travis so putting it into its own gem group and excluding it from the omnibus build.
* Ensure gem dependencies are securetm/bundle_auditThom May2016-01-211-1/+3
|
* another chefstyle catchup + pull masterlcg/chefstyle-catchup2Lamont Granquist2016-01-181-18/+17
| | | | | | | bunch of merges over the weekend need re-fixing again. seems like pointing at master of chefstyle is probably a good idea to start making people fix their code before merging.
* Revert "another chefstyle catchup + pull master"Lamont Granquist2016-01-181-17/+18
| | | | This reverts commit ccf46bf3055b2a1c06499ec104f3d74c26643395.
* another chefstyle catchup + pull masterLamont Granquist2016-01-181-18/+17
| | | | | | | bunch of merges over the weekend need re-fixing again. seems like pointing at master of chefstyle is probably a good idea to start making people fix their code before merging.
* removing chefstyle pinLamont Granquist2016-01-151-1/+1
| | | | lets float so that PRs pick up new versions
* Use double quotes by defaultThom May2016-01-141-6/+6
| | | | | | | This is an entirely mechanically generated (chefstyle -a) change, to go along with chef/chefstyle#5 . We should pick something and use it consistently, and my opinion is that double quotes are the appropriate thing.
* Per RFC 64, do style checking of the Chef repoThom May2016-01-121-0/+3
| | | | | | This commit enables ChefStyle, but with no active cops. Cops will be added per the RFC (one at a time, with a supporting PR to this repo) as we go on.
* add ruby-prof to its own gem groupLamont Granquist2015-12-101-2/+5
|
* Merge pull request #4034 from chef/lcg/ruby-profilingLamont Granquist2015-10-131-0/+2
|\ | | | | add optional ruby-profiling with --profile-ruby
| * add optional ruby-profiling with --profile-rubyLamont Granquist2015-10-051-0/+2
| | | | | | | | dumps a large call graph into /var/chef/cache/graph_profile.out
* | Have Gemspec not always expect chef-config to exist beside it.Kartik Null Cating-Subramanian2015-10-091-1/+1
|/
* Ship our Gemfile so people can run our tests from the gemjk/external-testsJohn Keiser2015-09-301-1/+1
|
* Don't add the external tests stuff to the main GemfileJohn Keiser2015-09-301-11/+13
|
* Add cheffish, chef-zero, chef-provisioning and chef-provisioning-aws specsJohn Keiser2015-09-301-1/+5
|
* Add external tests for chefspec, chef-sugar, chef-rewind, foodcritic and poiseJohn Keiser2015-09-301-0/+8
|
* Re-upgrade chef-zero to latestjk/latest-chef-zeroJohn Keiser2015-09-231-4/+0
|
* sync maintainers with githubtm/sync_gh_maintainersThom May2015-09-071-1/+9
|
* Run against the latest cheffish (1.3.2)jk/cheffish_fixJohn Keiser2015-09-031-1/+1
|
* Run against Cheffish changesJohn Keiser2015-09-031-4/+1
|
* Pin cheffish to ~> 1.3.1jdm/unbreakJay Mundrawala2015-09-031-1/+5
|
* Pin chef-zero to ~> 4.2.3Jay Mundrawala2015-09-031-0/+4
|
* Update to cheffish 1.3 for tests, tweak converge_if_changed outputJohn Keiser2015-07-311-1/+1
|
* Generate a text version of MAINTAINERSThom May2015-06-091-0/+1
|
* Move Chef::Config into a subprojectdanielsdeleo2015-05-201-0/+2
|
* Don't use git in GemfileJohn Keiser2015-05-131-1/+1
|
* Add tests for resource naming and creationJohn Keiser2015-05-131-0/+1
|
* Upgrading to latest ffi-yajl which contains fixes for Object#to_jsontyler-ball2014-10-101-2/+0
|
* Using my ffi-yajl branch where I fixed Objects that do not support to_jsontyler-ball2014-10-071-0/+2
|
* use the released artifactsLamont Granquist2014-09-091-3/+0
|
* bump mixlib-shellout to 2.0, track ohai+mixlib-shellout masterLamont Granquist2014-09-081-1/+1
|
* unicode shell_out fixes plus mixlib-shellout 2.xLamont Granquist2014-09-081-0/+3
| | | | | | - use en_US.UTF-8 explicitly rather than relying on mixlib-shellout's 'C' locale in order to force the LANG by default (restores unicode to most chef-client calls now)
* Remove chef-zero debugging statementJohn Keiser2014-05-271-2/+0
|
* Add more description to help for --repo-modejk/knife_serveJohn Keiser2014-05-271-0/+2
|
* Merge branch 'CHEF-4946' of github.com:criteo/chef into contributions-cc-51sersut2014-03-121-1/+1
|\ | | | | | | | | Conflicts: Gemfile
| * [CHEF-4946] Don't try to install ruby-shadow on cygwinPierre Ynard2014-01-101-1/+1
| |
* | Merge pull request #1126 from opscode/lcg/ruby-shadow-2.3.1lamont-granquist2014-03-061-1/+1
|\ \ | | | | | | CHEF-4773: ruby-shadow supports darwin+freebsd now
| * | ruby-shadow supports darwin+freebsd nowLamont Granquist2013-11-141-1/+1
| |/ | | | | | | - comment in https://tickets.opscode.com/browse/CHEF-4402
* | Remove obsolete doc generator depsdanielsdeleo2014-02-041-1/+0
|/
* remove commented pry dep from Gemfiledanielsdeleo2013-10-181-2/+0
|
* use separate gemspec for windowsLamont Granquist2013-09-271-20/+1
| | | | | | | | | | | - 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).
* bump win32-process to 0.7.3Lamont Granquist2013-09-261-1/+1
| | | | - 0.7.0 is failing on win2k3r2 (and only on that one)
* for now, pin win32-process to match mixlib-shelloutLamont Granquist2013-09-261-1/+1
|
* shell_out to diff => diff-lcs, cleaned up tests, updated gem versionsClaire McQuin2013-07-161-6/+6
|
* CHEF-4314: Pin active_support < 4.0.0 due to atomic + CAS issuesBryan McLellan2013-06-251-1/+1
|
* add rake task for generating docs with YARDLamont Granquist2013-06-201-0/+1
|
* Merge branch 'master' into file-refactorsersut2013-05-311-1/+1
|\ | | | | | | | | Conflicts: lib/chef/exceptions.rb
| * AIX also has no ruby shadowLamont Granquist2013-05-241-1/+1
| |
* | Add opt-in code coverage reportingdanielsdeleo2013-05-311-0/+1
|/ | | | | Run tests with, e.g., `COVERAGE=t bundle exec rspec PATH` to generate a report
* Use HTTPS to RubyGemsH "Waldo" G2013-04-111-1/+1
| | | use https when connecting to rubygems to prevent MITM hacks