ronin-support 0.1.0.rc2 → 0.1.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.md CHANGED
@@ -1,11 +1,11 @@
1
- ### 0.1.0 / 2011-02-01
1
+ ### 0.1.0 / 2011-03-15
2
2
 
3
3
  * Initial release:
4
4
  * Split out of [ronin](http://github.com/ronin-ruby/ronin) 0.3.0.
5
5
  * Upgraded to the LGPL-3 license.
6
6
  * Require Ruby >= 1.8.7.
7
- * Require chars ~> 0.2.0.
8
- * Require uri-query_params ~> 0.5.2.
9
- * Require bundler ~> 1.0.0.
10
- * Require yard ~> 0.6.4.
7
+ * Require chars ~> 0.2.
8
+ * Require combinatorics ~> 0.3.
9
+ * Require uri-query_params ~> 0.5, >= 0.5.2.
10
+ * Require data_paths ~> 0.2, >= 0.2.1.
11
11
 
data/README.md CHANGED
@@ -46,9 +46,14 @@ please see [Everyday Ronin](http://ronin-ruby.github.com/resources/everyday_roni
46
46
  ## Requirements
47
47
 
48
48
  * [Ruby](http://www.ruby-lang.org/) >= 1.8.7
49
- * [chars](http://github.com/postmodern/chars) ~> 0.1.2
50
- * [data_paths](http://github.com/postmodern/data_paths) ~> 0.2.0
51
- * [uri-query_params](http://github.com/postmodern/uri-query_params) ~> 0.5.0
49
+ * [chars](http://github.com/postmodern/chars#readme)
50
+ ~> 0.2
51
+ * [combinatorics](http://github.com/postmodern/combinatorics#readme)
52
+ ~> 0.3
53
+ * [uri-query_params](http://github.com/postmodern/uri-query_params#readme)
54
+ ~> 0.5, >= 0.5.2
55
+ * [data_paths](http://github.com/postmodern/data_paths#readme)
56
+ ~> 0.2, >= 0.2.1
52
57
 
53
58
  ## Install
54
59
 
@@ -17,7 +17,7 @@
17
17
  # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
- require 'uri'
20
+ require 'uri/common'
21
21
  require 'cgi'
22
22
 
23
23
  class Integer
@@ -20,7 +20,7 @@
20
20
  require 'ronin/formatting/extensions/http/integer'
21
21
  require 'ronin/formatting/extensions/text'
22
22
 
23
- require 'uri'
23
+ require 'uri/common'
24
24
  require 'cgi'
25
25
 
26
26
  class String
@@ -19,7 +19,7 @@
19
19
 
20
20
  require 'ronin/extensions/ip_addr'
21
21
 
22
- require 'uri'
22
+ require 'uri/http'
23
23
  require 'net/http'
24
24
 
25
25
  module Ronin
@@ -27,7 +27,7 @@ module Ronin
27
27
  # Network helper methods.
28
28
  #
29
29
  module Network
30
- IP_URL = URI('http://checkip.dyndns.org/')
30
+ IP_URL = URI.parse('http://checkip.dyndns.org/')
31
31
 
32
32
  #
33
33
  # Determines the current external IP Address.
@@ -20,6 +20,6 @@
20
20
  module Ronin
21
21
  module Support
22
22
  # ronin-support version
23
- VERSION = '0.1.0.rc2'
23
+ VERSION = '0.1.0.rc3'
24
24
  end
25
25
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ronin-support
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease: 6
5
- version: 0.1.0.rc2
5
+ version: 0.1.0.rc3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Postmodern
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-03-06 00:00:00 -08:00
13
+ date: 2011-03-11 00:00:00 -08:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -40,12 +40,12 @@ dependencies:
40
40
  requirement: &id003 !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: "0.5"
46
43
  - - ">="
47
44
  - !ruby/object:Gem::Version
48
45
  version: 0.5.2
46
+ - - ~>
47
+ - !ruby/object:Gem::Version
48
+ version: "0.5"
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: *id003
@@ -54,12 +54,12 @@ dependencies:
54
54
  requirement: &id004 !ruby/object:Gem::Requirement
55
55
  none: false
56
56
  requirements:
57
- - - ~>
58
- - !ruby/object:Gem::Version
59
- version: "0.2"
60
57
  - - ">="
61
58
  - !ruby/object:Gem::Version
62
59
  version: 0.2.1
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: "0.2"
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: *id004
@@ -249,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  requirements: []
250
250
 
251
251
  rubyforge_project: ronin-support
252
- rubygems_version: 1.5.2
252
+ rubygems_version: 1.6.2
253
253
  signing_key:
254
254
  specification_version: 3
255
255
  summary: A support library for Ronin.