mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
19 lines
457 B
Ruby
19 lines
457 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_httparty < RUBY
|
|
description 'Makes http fun! Also, makes consuming restful web services dead easy.'
|
|
homepage 'https://github.com/jnunemaker/httparty'
|
|
version "0.24.2-#{CREW_RUBY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'ruby' => :logical
|
|
depends_on 'ruby_csv' # R
|
|
depends_on 'ruby_mini_mime' # R
|
|
depends_on 'ruby_multi_xml' # R
|
|
|
|
conflicts_ok
|
|
no_compile_needed
|
|
end
|