Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

rubygems (11) Versions 1.1.1

Configures rubygems and bundler

Policyfile
Berkshelf
Knife
cookbook 'rubygems', '= 1.1.1', :supermarket
cookbook 'rubygems', '= 1.1.1'
knife supermarket install rubygems
knife supermarket download rubygems
README
Dependencies
Changelog
Quality 83%

Rubygems Cookbook

Build Status Cookbook Version License

This cookbook configures "system" and Omnibus Chef gem sources, as well as providing the rubygems_api resource, which lets you manage ownership of gems on rubygems.org.

Requirements

Chef

  • 12.7 or later

Usage

There are two ways to use this cookbook. The legacy way is to set the desired attributes and simply include_recipe 'rubygems'. The modern and recommended way is to call the gemrc and/or bundle_config resources as shown in the Resources section below.

Attributes

# From attributes/default.rb
default['rubygems']['gem_disable_default'] = false
default['rubygems']['gem_sources'] = [ 'https://rubygems.org' ]
default['rubygems']['chef_gem_disable_default'] = false
default['rubygems']['chef_gem_sources'] = [ 'https://rubygems.org' ]

Resources

This cookbook provides two simple resources which allow you to set any key/value configuration for the gemrc or bundle config files. Additionaly this cookbook provides the rubygems_api resource, which lets you manage ownership of gems on rubygems.org.

rubygems_api

rubygems_api do
  gem "chef" do
    owners << "jkeiser"
  end
end

Or this:

rubygems_api do
  user "jkeiser" do
    owned_gems << "chef"
  end
end

If you want to set owners or owned_gems to a specific set of users and have it remove all others, you can add purge true to either user or gem resource.

To talk to a custom gem server, you can say rubygems_api "https://otherserver.com" do ... end. You can also modify the API key you are by specifying the api_key property under rubygems_api.

gemrc

Configures the gemrc.

Properties

  • path - Accepts symbols :global, :local, or a string literal path to the .gemrc file. Default: Name of Resource Instance
  • user - Owner of gemrc file.
  • group - Group associated to gemrc file.
  • values - Hash containing all key/values to configure.

Action

  • :create - Default Action

Usage

Global configuration usage:

gemrc :global do
  values(
    sources: %w{ http://localhost:9292 https://rubygems.org }
  )
end

Literal path usage:

gemrc '/path/to/.gemrc' do
  values(
    sources: %w{ http://localhost:9292 https://rubygems.org }
  )
end

bundle_config

Configures bundler.

Properties

  • path - A literal path to the .gemrc file. Default: Name of Resource Instance
  • user - Owner of gemrc file.
  • group - Group associated to gemrc file.
  • values - Hash containing all key/values to configure.

Action

  • :create - Default Action

Usage

bundle_config '/path/to/.bundle/config' do
  values(
    { 'BUNDLE_MIRROR__HTTPS://RUBYGEMS__ORG/' => 'http://localhost:9292' }
  )
end

License and Authors

Copyright (c) 2009-2016, Chef Software Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

rubygems Cookbook CHANGELOG

This file is used to list changes made in each version of the rubygems cookbook.

1.1.1 (2018-03-07)

  • Resolve Chef 14 incompatibilies

1.1.0 (2017-05-30)

  • Remove class_eval usage and require Chef 12.7+

1.0.4 (2017-04-17)

  • Use kitchen-dokken for integration testing in Travis and switch to delivery local for testing instead of the Rakefile
  • Prevent failures with metadata.rb on older chef clients
  • Ensure compatibility with Chef 12.5/12.6
  • Remove invalid supports metadata

1.0.3 (2017-02-13)

  • Fix gemrc error if sources is an array.
  • Update ignore files
  • Add maintainers files
  • Add the full Apache license file

Collaborator Number Metric
            

1.1.1 passed this metric

Contributing File Metric
            

1.1.1 passed this metric

Foodcritic Metric
            

1.1.1 failed this metric

FC016: LWRP does not declare a default action: rubygems/resources/api.rb:1
FC120: Do not set the name property directly on a resource: rubygems/recipes/default.rb:24
FC120: Do not set the name property directly on a resource: rubygems/recipes/default.rb:32
FC120: Do not set the name property directly on a resource: rubygems/recipes/default.rb:40
FC120: Do not set the name property directly on a resource: rubygems/recipes/default.rb:48
Run with Foodcritic Version 14.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any

No Binaries Metric
            

1.1.1 passed this metric

Testing File Metric
            

1.1.1 passed this metric

Version Tag Metric
            

1.1.1 passed this metric