gravatar-ultimate 1.0.0 → 1.0.1
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/gravatar-ultimate.gemspec +2 -2
- data/lib/gravatar/dependencies.rb +9 -2
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ This gem is used to interface with the entire Gravatar API: it's not just for ge
|
|
|
12
12
|
to and communicating with the XML-RPC API too! Additionally, it can be used to download the Gravatar image data itself,
|
|
13
13
|
rather than just a URL to that data. This saves you the extra step of having to do so.}
|
|
14
14
|
gem.email = "sinisterchipmunk@gmail.com"
|
|
15
|
-
gem.homepage = "http://
|
|
15
|
+
gem.homepage = "http://www.thoughtsincomputation.com/"
|
|
16
16
|
gem.authors = ["Colin MacKenzie IV"]
|
|
17
17
|
gem.add_dependency "sc-core-ext", ">= 1.2.0"
|
|
18
18
|
gem.add_development_dependency "rspec", ">= 1.3.0"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/gravatar-ultimate.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{gravatar-ultimate}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Colin MacKenzie IV"]
|
|
@@ -42,7 +42,7 @@ rather than just a URL to that data. This saves you the extra step of having to
|
|
|
42
42
|
"spec/spec.opts",
|
|
43
43
|
"spec/spec_helper.rb"
|
|
44
44
|
]
|
|
45
|
-
s.homepage = %q{http://
|
|
45
|
+
s.homepage = %q{http://www.thoughtsincomputation.com/}
|
|
46
46
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
47
47
|
s.require_paths = ["lib"]
|
|
48
48
|
s.rubygems_version = %q{1.3.6}
|
|
@@ -2,11 +2,18 @@ if defined?(Rails)
|
|
|
2
2
|
Rails.configuration.gem "sc-core-ext", ">= 1.2.0"
|
|
3
3
|
elsif !defined?(Gem)
|
|
4
4
|
require 'rubygems'
|
|
5
|
+
gem 'activesupport', '>= 2.3.5'
|
|
5
6
|
gem 'sc-core-ext', '>= 1.2.0'
|
|
6
7
|
end
|
|
7
8
|
|
|
8
|
-
unless defined?(
|
|
9
|
-
|
|
9
|
+
unless defined?(Rails) # because Rails will load it later and we don't really need it quite yet.
|
|
10
|
+
unless defined?(ActiveSupport::Cache)
|
|
11
|
+
require 'active_support'
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
unless defined?(ScCoreExt)
|
|
15
|
+
require 'sc-core-ext'
|
|
16
|
+
end
|
|
10
17
|
end
|
|
11
18
|
|
|
12
19
|
# The rest of this is core Ruby stuff so it's safe to load immediately, even if Rails is running the show.
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.0.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Colin MacKenzie IV
|
|
@@ -95,7 +95,7 @@ files:
|
|
|
95
95
|
- spec/spec.opts
|
|
96
96
|
- spec/spec_helper.rb
|
|
97
97
|
has_rdoc: true
|
|
98
|
-
homepage: http://
|
|
98
|
+
homepage: http://www.thoughtsincomputation.com/
|
|
99
99
|
licenses: []
|
|
100
100
|
|
|
101
101
|
post_install_message:
|