httparty 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of httparty might be problematic. Click here for more details.

data/History CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.2.6 2009-01-05
2
+ * 1 minor bug fix
3
+ * added explicit require of time as Time#parse failed outside of rails (willcodeforfoo)
4
+
1
5
  == 0.2.5 2009-01-05
2
6
  * 1 major enhancement
3
7
  * Add command line interface to HTTParty (Alex Vollmer)
data/httparty.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{httparty}
5
- s.version = "0.2.5"
5
+ s.version = "0.2.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["John Nunemaker"]
@@ -1,3 +1,5 @@
1
+ require 'time'
2
+
1
3
  # Copyright (c) 2008 Sam Smoot.
2
4
  #
3
5
  # Permission is hereby granted, free of charge, to any person obtaining
@@ -1,3 +1,3 @@
1
1
  module HTTParty
2
- Version = '0.2.5'
2
+ Version = '0.2.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: httparty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Nunemaker