Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bcx / lib / bcx / configuration.rb
Size: Mime:
# ## Configuration
#
# Provides a configuration block for setting up the Bcx client
#
# Example:
#
#     Bcx.configure do |config|
#       config.account = '1234567890'
#     end
#
module Bcx
  class Configuration
    attr_accessor :account, :api_version

    def initialize
      @api_version = 'v1'
    end
  end
end