jagg 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cad2ab2e9fca8656974b6348bbfbf7889c083824
4
- data.tar.gz: 62a6b23ae9ad5e7a760825d6c3d7252fa1ae41ff
3
+ metadata.gz: 0437e27ecde7468f0aea3ee706f0e647bfa7de16
4
+ data.tar.gz: 67652bf29d96f7171dff6d0e3f8f91ca82d99f72
5
5
  SHA512:
6
- metadata.gz: 36868c4227ec13ef3ca9ebc3f21682de1fe1212ff44dd28c4ebb5f1879dacfb304ae019e6361038147247d190516975851b19307bd96709a45fe3e03458567a5
7
- data.tar.gz: 8eb5b1e1cbe564f8f3d6de2c0225055e2d922557e5dc87f286e818fe3be6759c67363213397c38a26273fc6e70b680458d1d78e68fe79ec5d68d8de027ad8e8d
6
+ metadata.gz: 54bcc577120841ce57f5a22e839d94dd1ebe9e210dbc4329b68d14ef48a9075632fe2cb33e1658c0b957bd05b65af480503b9a4c4c90c7b78fabd671a9b1b2ca
7
+ data.tar.gz: b66345d2a0b3af22617a61cc9715fc06011f53ea3e163ca3c3789f6c71cf22599aa58c6a428061b98d9e7bd473505f0948f5424ffb9aea9d0371e51bf1dfbf51
@@ -1,3 +1,10 @@
1
+ # JAGG is a Gravatar API client that supports both images and profiles.
2
+ #
3
+ # @example Get the URL for an email address
4
+ # JAGG::Gravatar::Image.url('user@example.com') #=> "https://www.gravatar.com/avatar/b58996c504c5638798eb6b511e6f49af"
5
+ # @example Fetch a user's profile
6
+ # JAGG::Gravatar::Profile.for('user@example.com') #=> #<JAGG::Gravatar::Profile:0x00000000000000 ...>
7
+ #
1
8
  module JAGG
2
9
  class << self
3
10
  # Load the gem's dependencies
@@ -1,3 +1,3 @@
1
1
  module JAGG
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -1,6 +1,6 @@
1
1
  module JAGG
2
2
  class Gravatar
3
- # This class holds an image contained within the profile data.
3
+ # This class acts as a wrapper around an image URL.
4
4
  #
5
5
  class Image
6
6
  class << self
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jagg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nialto Services