gravatarify 3.0.0 → 3.1.0

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.
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.3
5
+ - jruby-18mode
6
+ - jruby-19mode
data/Gemfile CHANGED
@@ -2,3 +2,5 @@ source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in gravaterify.gemspec
4
4
  gemspec
5
+
6
+ gem "jruby-openssl", :platform => :jruby
@@ -1,14 +1,23 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gravatarify (2.2.4)
4
+ gravatarify (3.1.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
8
8
  specs:
9
- activesupport (3.0.9)
10
- rr (1.0.2)
11
- shoulda (2.11.3)
9
+ activesupport (3.2.5)
10
+ i18n (~> 0.6)
11
+ multi_json (~> 1.0)
12
+ i18n (0.6.0)
13
+ multi_json (1.3.6)
14
+ rake (0.9.2.2)
15
+ rr (1.0.4)
16
+ shoulda (3.0.1)
17
+ shoulda-context (~> 1.0.0)
18
+ shoulda-matchers (~> 1.0.0)
19
+ shoulda-context (1.0.0)
20
+ shoulda-matchers (1.0.0)
12
21
 
13
22
  PLATFORMS
14
23
  ruby
@@ -16,5 +25,7 @@ PLATFORMS
16
25
  DEPENDENCIES
17
26
  activesupport (>= 3.0.0)
18
27
  gravatarify!
28
+ jruby-openssl
29
+ rake
19
30
  rr (>= 0.10.5)
20
31
  shoulda (>= 2.10.2)
data/README.md CHANGED
@@ -303,7 +303,8 @@ of an overkill, though I like neat and tidy classes :)
303
303
 
304
304
  ### Thanks
305
305
 
306
- - [gudleik](http://github.com/gudleik) for his work on allowing an empty `:filetype`
306
+ - [gudleik](https://github.com/gudleik) for his work on allowing an empty `:filetype`
307
+ - [thegcat](https://github.com/thegcat) travis, jruby and ruby 1.9 support
307
308
 
308
309
  Licence
309
310
  =======
data/Rakefile CHANGED
@@ -10,3 +10,5 @@ Rake::TestTask.new(:test) do |t|
10
10
  t.pattern = 'test/**/*_test.rb'
11
11
  t.verbose = true
12
12
  end
13
+
14
+ task :default => :test
@@ -25,5 +25,6 @@ Gem::Specification.new do |s|
25
25
  s.add_development_dependency 'shoulda', '>= 2.10.2'
26
26
  s.add_development_dependency 'rr', '>= 0.10.5'
27
27
  s.add_development_dependency 'activesupport', '>= 3.0.0'
28
+ s.add_development_dependency 'rake'
28
29
  end
29
30
 
@@ -1,4 +1,4 @@
1
1
  module Gravatarify
2
2
  # current API version, as defined by http://semver.org/
3
- VERSION = "3.0.0".freeze
3
+ VERSION = "3.1.0"
4
4
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gravatarify
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
+ - 1
8
9
  - 0
9
- - 0
10
- version: 3.0.0
10
+ version: 3.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lukas Westermann
@@ -15,13 +15,11 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-06 00:00:00 +02:00
19
- default_executable:
18
+ date: 2012-06-10 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
- name: shoulda
23
21
  prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
22
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
23
  none: false
26
24
  requirements:
27
25
  - - ">="
@@ -32,12 +30,12 @@ dependencies:
32
30
  - 10
33
31
  - 2
34
32
  version: 2.10.2
33
+ requirement: *id001
35
34
  type: :development
36
- version_requirements: *id001
35
+ name: shoulda
37
36
  - !ruby/object:Gem::Dependency
38
- name: rr
39
37
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
38
+ version_requirements: &id002 !ruby/object:Gem::Requirement
41
39
  none: false
42
40
  requirements:
43
41
  - - ">="
@@ -48,12 +46,12 @@ dependencies:
48
46
  - 10
49
47
  - 5
50
48
  version: 0.10.5
49
+ requirement: *id002
51
50
  type: :development
52
- version_requirements: *id002
51
+ name: rr
53
52
  - !ruby/object:Gem::Dependency
54
- name: activesupport
55
53
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
54
+ version_requirements: &id003 !ruby/object:Gem::Requirement
57
55
  none: false
58
56
  requirements:
59
57
  - - ">="
@@ -64,8 +62,23 @@ dependencies:
64
62
  - 0
65
63
  - 0
66
64
  version: 3.0.0
65
+ requirement: *id003
66
+ type: :development
67
+ name: activesupport
68
+ - !ruby/object:Gem::Dependency
69
+ prerelease: false
70
+ version_requirements: &id004 !ruby/object:Gem::Requirement
71
+ none: false
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ hash: 3
76
+ segments:
77
+ - 0
78
+ version: "0"
79
+ requirement: *id004
67
80
  type: :development
68
- version_requirements: *id003
81
+ name: rake
69
82
  description: Ruby (and Rails) Gravatar helpers with unique options like Proc's for default images, support for gravatar.com's multiple host names, ability to define reusable styles and much more...
70
83
  email:
71
84
  - lukas.westermann@gmail.com
@@ -77,6 +90,7 @@ extra_rdoc_files: []
77
90
 
78
91
  files:
79
92
  - .gitignore
93
+ - .travis.yml
80
94
  - Gemfile
81
95
  - Gemfile.lock
82
96
  - LICENSE
@@ -94,7 +108,6 @@ files:
94
108
  - test/unit/gravatarify_helper_test.rb
95
109
  - test/unit/gravatarify_styles_test.rb
96
110
  - test/unit/gravatarify_subdomain_test.rb
97
- has_rdoc: true
98
111
  homepage: http://github.com/lwe/gravatarify
99
112
  licenses:
100
113
  - MIT
@@ -128,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
128
141
  requirements: []
129
142
 
130
143
  rubyforge_project:
131
- rubygems_version: 1.4.1
144
+ rubygems_version: 1.8.15
132
145
  signing_key:
133
146
  specification_version: 3
134
147
  summary: Awesome gravatar support for Ruby (and Rails).