gravatar_for 0.0.2.pre

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3dbc8687ccdbec30614272a95d406db002a274cf
4
+ data.tar.gz: c27fc86d9b1f9d43a86eebd244489202a5c24cb7
5
+ SHA512:
6
+ metadata.gz: 3ff948066e5f6be8c6d969edcb79b3bc4beb37e9e7f7c4a06a3de11fa34f806735207cf695a85653b887940bfb24e2feae801e9e35777347d540e8c26522beac
7
+ data.tar.gz: 342bf6c1562089896fcfb9b763a32cd0798d3254a9802c84b4f5a6d9c12757fc34da3d548b928581028f2c9deaee925b9c9e2b5e1699be84d19fda96f9ae2da8
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ # .gitignore
2
+ *.gem
@@ -0,0 +1,12 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'gravatar_for'
3
+ s.version = '0.0.2.pre'
4
+ s.date = '2014-04-09'
5
+ s.summary = 'A simple Gravatar view helper.'
6
+ s.description = 'gravatar_for is a simple, but capable Gravatar view helper.'
7
+ s.authors = 'Daniel Seitz'
8
+ s.email = 'daniel.e.seitz@gmail.com'
9
+ s.homepage = 'http://github.com/s3itz/gravatar_for'
10
+ s.files = `git ls-files`.split($/)
11
+ s.license = 'MIT'
12
+ end
@@ -0,0 +1,7 @@
1
+ module GravatarFor
2
+ module ViewHelpers
3
+ def test
4
+ 'This confirms this is working'
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module GravatarFor
2
+ class Railtie < Rails::Railtie
3
+ initializer 'gravatar_for.view_helpers' do
4
+ ActionView::Base.send :include, ViewHelpers
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,2 @@
1
+ require 'gravatar_for/gravatar_for'
2
+ require 'gravatar_for/railtie' if defined?(Rails)
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gravatar_for
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2.pre
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Seitz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-09 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: gravatar_for is a simple, but capable Gravatar view helper.
14
+ email: daniel.e.seitz@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".gitignore"
20
+ - gravatar_for.gemspec
21
+ - lib/gravatar_for.rb
22
+ - lib/gravatar_for/gravatar_for.rb
23
+ - lib/gravatar_for/railtie.rb
24
+ homepage: http://github.com/s3itz/gravatar_for
25
+ licenses:
26
+ - MIT
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">"
40
+ - !ruby/object:Gem::Version
41
+ version: 1.3.1
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.2.2
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: A simple Gravatar view helper.
48
+ test_files: []