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    
lobbyist-ruby / lib / lobbyist / v2 / api_token.rb
Size: Mime:
module Lobbyist
  module V2

    class ApiToken < Lobbyist::V2::Base
      attr_accessor :id, :token

      def self.generate_token(params = {})
        get("/v2/generate_token.json", params)
      end
    end
  end
end