eat 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +2 -0
- data/eat.gemspec +2 -2
- data/lib/eat/version.rb +1 -1
- metadata +8 -6
data/CHANGELOG
CHANGED
data/eat.gemspec
CHANGED
|
@@ -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{
|
|
13
|
-
s.description = %q{
|
|
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
|
|
data/lib/eat/version.rb
CHANGED
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.
|
|
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: &
|
|
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: *
|
|
25
|
-
description:
|
|
26
|
-
as a
|
|
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:
|
|
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
|