1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Relax the dependency on naught
Author: Simon Quigley <tsimonq2@debian.org>
Origin: vendor
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1129158
Forwarded: not-needed
Last-Update: 2026-03-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/twitter.gemspec
+++ b/twitter.gemspec
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'http_parser.rb', '~> 0.6.0'
spec.add_dependency 'memoizable', '>= 0.4.0'
spec.add_dependency 'multipart-post', '~> 2.0'
- spec.add_dependency 'naught', '~> 1.0'
+ spec.add_dependency 'naught', '>= 1.0'
spec.add_dependency 'simple_oauth', '~> 0.3.0'
spec.authors = ['Erik Michaels-Ober', 'John Nunemaker', 'Wynn Netherland', 'Steve Richert', 'Steve Agalloco']
spec.description = 'A Ruby interface to the Twitter API.'
|