facer 0.0.4 → 0.0.5

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.
Files changed (2) hide show
  1. data/lib/facer.rb +7 -8
  2. metadata +3 -3
data/lib/facer.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
- $LOAD_PATH << './lib/facer'
3
2
  require 'rubygems'
4
3
 
5
4
  gem 'multipart-post'
@@ -12,17 +11,17 @@ require 'mime/types'
12
11
  require "uri"
13
12
  require "json"
14
13
 
15
- require "linker"
16
- require "namespace"
17
- require "account"
18
- require "faces"
14
+ require "linker.rb"
15
+ require "facer/namespace.rb"
16
+ require "facer/account.rb"
17
+ require "facer/faces.rb"
19
18
 
20
19
  # This class manage basilar operations on face.com.
21
20
  # It's very alpha so you will find a very basical subset
22
21
  # to use face.com services
23
- # Author:: Stefano Valicchia (mailto:stefano.valicchiagmail.com)
24
- # Copyright:: Copyright (c) 2002 Giano
22
+ # Author:: Stefano Valicchia (mailto:stefano.valicchia@gmail.com)
23
+ # Copyright:: Copyright (c) 2011 Giano
25
24
  # License:: Distributes under the same terms as Ruby
26
25
  module Facer
27
- VERSION = "0.0.4"
26
+ VERSION = "0.0.5"
28
27
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stefano Valicchia