Sha256: ddda937e64bef73bd846fca080ec310ab95172e82632d0d237aed77ca5391d7d

Contents?: true

Size: 594 Bytes

Versions: 1

Compression:

Stored size: 594 Bytes

Contents

require 'rubygems'
require 'rake'
require 'echoe'
require './lib/bitly/version'

Echoe.new('bitly', Bitly::VERSION) do |p|
  p.description = "Use the bit.ly API to shorten or expand URLs"
  p.url = "http://github.com/philnash/bitly"
  p.author = "Phil Nash"
  p.email = "philnash@gmail.com"
  p.extra_deps = [
    ['multi_json', '~> 1.3'],
    ['httparty', '>= 0.7.6'],
    ['oauth2', '>= 0.5.0', '< 2.0']
  ]
  p.development_dependencies = [
    ['echoe'],
    ['rake'],
    ['shoulda'],
    ['flexmock'],
    ['webmock'],
    ['activesupport', '~> 3.2'],
    ['minitest', '~> 5.8.3']
  ]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bitly-1.1.0 Rakefile