mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
19 lines
438 B
Ruby
19 lines
438 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_open_uri < RUBY
|
|
description 'An easy-to-use wrapper for net::http, net::https and net::ftp.'
|
|
homepage 'https://github.com/ruby/open-uri'
|
|
version "0.5.0-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby' => :logical
|
|
depends_on 'ruby_stringio' # R
|
|
depends_on 'ruby_time' # R
|
|
depends_on 'ruby_uri' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|