Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 496 Bytes

File metadata and controls

25 lines (19 loc) · 496 Bytes

ruby-opensourceapi

ruby-opensourceapi is an API Wrapper that allows you to query the Open Source License API with Ruby.

Example

require "opensource"

licenses = OpenSource::Licenses.tagged :permissive
licenses.each do |license|
  puts license.name
end

Installing

gem install opensourceapi