eat 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +2 -0
  2. data/eat.gemspec +2 -2
  3. data/lib/eat/version.rb +1 -1
  4. metadata +8 -6
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 0.1.2
2
+ * better gem description to show up on rubygems
1
3
  0.1.1
2
4
  * SSL certificates are now verified by default (use :openssl_verify_mode => 'none' to disable) per @codahale http://bit.ly/kZr9Jc
3
5
  0.1.0
@@ -9,8 +9,8 @@ Gem::Specification.new do |s|
9
9
  s.authors = ["Seamus Abshere"]
10
10
  s.email = ["seamus@abshere.net"]
11
11
  s.homepage = "https://github.com/seamusabshere/eat"
12
- s.summary = %q{A more trustworthy open-uri for use with RSS feeds, config scripts, etc.}
13
- s.description = %q{Lets you open local and remote files by immediately returning their contents as a string.}
12
+ s.summary = %q{Defines an #eat method that takes local and remote paths and returns the contents it finds there as a String. Like open-uri but with fewer weirdnesses (and it doesn't override #open).}
13
+ s.description = %q{A (better?) replacement for open-uri. Gets the contents of local and remote files as a String, no questions asked.}
14
14
 
15
15
  s.rubyforge_project = "eat"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module Eat
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-06-30 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: test-unit
16
- requirement: &2164601920 !ruby/object:Gem::Requirement
16
+ requirement: &2164548520 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,9 +21,9 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *2164601920
25
- description: Lets you open local and remote files by immediately returning their contents
26
- as a string.
24
+ version_requirements: *2164548520
25
+ description: A (better?) replacement for open-uri. Gets the contents of local and
26
+ remote files as a String, no questions asked.
27
27
  email:
28
28
  - seamus@abshere.net
29
29
  executables: []
@@ -63,7 +63,9 @@ rubyforge_project: eat
63
63
  rubygems_version: 1.8.5
64
64
  signing_key:
65
65
  specification_version: 3
66
- summary: A more trustworthy open-uri for use with RSS feeds, config scripts, etc.
66
+ summary: ! 'Defines an #eat method that takes local and remote paths and returns the
67
+ contents it finds there as a String. Like open-uri but with fewer weirdnesses (and
68
+ it doesn''t override #open).'
67
69
  test_files:
68
70
  - test/helper.rb
69
71
  - test/test_eat.rb