rfql 0.1.alpha.2 → 0.1.alpha.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
- v0.1.alpha.2. WIP
1
+ v0.1.alpha.3. moved a require to the right place
2
+
3
+ v0.1.alpha.2. changed homepage project
2
4
 
3
5
  v0.1.alpha. WIP
data/README.rdoc CHANGED
@@ -1,14 +1,25 @@
1
- = RFQL - Ruby interface for Facebook Query Language
1
+ = RFQL - Ruby API for the {Facebook Query Language}[https://developers.facebook.com/docs/reference/fql/]
2
2
 
3
- Work In Progress
3
+ <b>Work In Progress - things can change (and probably they will do)</b>
4
+
5
+ == Features
6
+
7
+ * RFQL API uses a simple, yet powerful syntax, heavily ispired by ActiveRecord and AREL projects.
8
+
9
+ == Installation
10
+
11
+ <tt>gem install rfql --prerelease</tt>
12
+
13
+ == Usage / Examples
4
14
 
5
15
  == TODO
6
16
 
7
17
  * Implement XML fetching
8
- * A bit of refactoring (commenting, move thing up and down and all around...)
9
- * Have I implemented errors managing before??? Who knows!
18
+ * Did I already implement errors managing??? Who knows!
19
+ * A bit of refactoring
20
+ * Documentation
10
21
  * ADD TESTS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11
22
 
12
23
  == License
13
24
 
14
- MIT (see LICENSE)
25
+ MIT (see {LICENSE}[https://github.com/ProGNOMmers/rfql/blob/master/LICENSE])
data/Rakefile CHANGED
@@ -2,14 +2,14 @@ require 'psych'
2
2
  require 'echoe'
3
3
 
4
4
  Echoe.new("rfql") do |p|
5
- # p.project = 'ProGNOMmers'
5
+ p.project = 'rfql'
6
6
  p.author = "De Santis Maurizio"
7
7
  p.email = 'desantis.maurizio@gmail.com'
8
8
  p.description = "RFQL - Ruby interface for Facebook Query Language"
9
9
  p.summary = "It lets you use ORM-style code for fetching data from Facebook through the Facebook Query Language"
10
10
  end
11
11
 
12
- #task :default => :irb
12
+ desc 'IRB console'
13
13
  task :irb do
14
14
  $LOAD_PATH << "#{Dir.pwd}/lib"
15
15
  require 'rfql'
@@ -1,3 +1,4 @@
1
+ require 'json'
1
2
  module RFQL
2
3
  module Response
3
4
  class JSON
@@ -1,4 +1,3 @@
1
- require 'json'
2
1
  require 'rfql/response/json/raw'
3
2
  require 'rfql/response/json/parsed'
4
3
  require 'rfql/response/json/parsed/records'
data/rfql.gemspec CHANGED
@@ -1,24 +1,24 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{rfql}
5
- s.version = "0.1.alpha.2"
4
+ s.name = "rfql"
5
+ s.version = "0.1.alpha.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = [%q{De Santis Maurizio}]
9
- s.cert_chain = [%q{/home/mau/.gem_keys/gem-public_cert.pem}]
10
- s.date = %q{2011-06-30}
11
- s.description = %q{RFQL - Ruby interface for Facebook Query Language}
12
- s.email = %q{desantis.maurizio@gmail.com}
13
- s.extra_rdoc_files = [%q{CHANGELOG}, %q{LICENSE}, %q{README.rdoc}, %q{lib/rfql.rb}, %q{lib/rfql/core_ext/object/blank.rb}, %q{lib/rfql/query.rb}, %q{lib/rfql/query/methods.rb}, %q{lib/rfql/query/quoting.rb}, %q{lib/rfql/request.rb}, %q{lib/rfql/request/delegations.rb}, %q{lib/rfql/response.rb}, %q{lib/rfql/response/fql_error.rb}, %q{lib/rfql/response/json.rb}, %q{lib/rfql/response/json/parsed.rb}, %q{lib/rfql/response/json/parsed/error.rb}, %q{lib/rfql/response/json/parsed/null.rb}, %q{lib/rfql/response/json/parsed/records.rb}, %q{lib/rfql/response/json/raw.rb}]
14
- s.files = [%q{CHANGELOG}, %q{LICENSE}, %q{Manifest}, %q{README.rdoc}, %q{Rakefile}, %q{lib/rfql.rb}, %q{lib/rfql/core_ext/object/blank.rb}, %q{lib/rfql/query.rb}, %q{lib/rfql/query/methods.rb}, %q{lib/rfql/query/quoting.rb}, %q{lib/rfql/request.rb}, %q{lib/rfql/request/delegations.rb}, %q{lib/rfql/response.rb}, %q{lib/rfql/response/fql_error.rb}, %q{lib/rfql/response/json.rb}, %q{lib/rfql/response/json/parsed.rb}, %q{lib/rfql/response/json/parsed/error.rb}, %q{lib/rfql/response/json/parsed/null.rb}, %q{lib/rfql/response/json/parsed/records.rb}, %q{lib/rfql/response/json/raw.rb}, %q{rfql.gemspec}]
15
- s.homepage = %q{http://rfql.github.com/rfql/}
16
- s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Rfql}, %q{--main}, %q{README.rdoc}]
17
- s.require_paths = [%q{lib}]
18
- s.rubyforge_project = %q{rfql}
19
- s.rubygems_version = %q{1.8.5}
20
- s.signing_key = %q{/home/mau/.gem_keys/gem-private_key.pem}
21
- s.summary = %q{It lets you use ORM-style code for fetching data from Facebook through the Facebook Query Language}
8
+ s.authors = ["De Santis Maurizio"]
9
+ s.cert_chain = ["/home/mau/.gem_keys/gem-public_cert.pem"]
10
+ s.date = "2011-11-11"
11
+ s.description = "RFQL - Ruby interface for Facebook Query Language"
12
+ s.email = "desantis.maurizio@gmail.com"
13
+ s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.rdoc", "lib/rfql.rb", "lib/rfql/core_ext/object/blank.rb", "lib/rfql/query.rb", "lib/rfql/query/methods.rb", "lib/rfql/query/quoting.rb", "lib/rfql/request.rb", "lib/rfql/request/delegations.rb", "lib/rfql/response.rb", "lib/rfql/response/fql_error.rb", "lib/rfql/response/json.rb", "lib/rfql/response/json/parsed.rb", "lib/rfql/response/json/parsed/error.rb", "lib/rfql/response/json/parsed/null.rb", "lib/rfql/response/json/parsed/records.rb", "lib/rfql/response/json/raw.rb"]
14
+ s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.rdoc", "Rakefile", "lib/rfql.rb", "lib/rfql/core_ext/object/blank.rb", "lib/rfql/query.rb", "lib/rfql/query/methods.rb", "lib/rfql/query/quoting.rb", "lib/rfql/request.rb", "lib/rfql/request/delegations.rb", "lib/rfql/response.rb", "lib/rfql/response/fql_error.rb", "lib/rfql/response/json.rb", "lib/rfql/response/json/parsed.rb", "lib/rfql/response/json/parsed/error.rb", "lib/rfql/response/json/parsed/null.rb", "lib/rfql/response/json/parsed/records.rb", "lib/rfql/response/json/raw.rb", "rfql.gemspec"]
15
+ s.homepage = "http://rfql.github.com/rfql/"
16
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rfql", "--main", "README.rdoc"]
17
+ s.require_paths = ["lib"]
18
+ s.rubyforge_project = "rfql"
19
+ s.rubygems_version = "1.8.11"
20
+ s.signing_key = "/home/mau/.gem_keys/gem-private_key.pem"
21
+ s.summary = "It lets you use ORM-style code for fetching data from Facebook through the Facebook Query Language"
22
22
 
23
23
  if s.respond_to? :specification_version then
24
24
  s.specification_version = 3
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rfql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.alpha.2
4
+ version: 0.1.alpha.3
5
5
  prerelease: 4
6
6
  platform: ruby
7
7
  authors:
@@ -50,7 +50,7 @@ cert_chain:
50
50
  -----END CERTIFICATE-----
51
51
 
52
52
  '
53
- date: 2011-06-30 00:00:00.000000000Z
53
+ date: 2011-11-11 00:00:00.000000000 Z
54
54
  dependencies: []
55
55
  description: RFQL - Ruby interface for Facebook Query Language
56
56
  email: desantis.maurizio@gmail.com
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  version: '1.2'
124
124
  requirements: []
125
125
  rubyforge_project: rfql
126
- rubygems_version: 1.8.5
126
+ rubygems_version: 1.8.11
127
127
  signing_key:
128
128
  specification_version: 3
129
129
  summary: It lets you use ORM-style code for fetching data from Facebook through the
metadata.gz.sig CHANGED
@@ -1 +1 @@
1
- =?G�H�;7vS� �8,`%�sՊ.�/�`r:'����`�b���_3)��W( ���˪��+�����u�,�LP����v�T�Fě~io�ޥ�CJZ����S�l��b��t1VZ��V�]b��T�f<��{ʹ(��'FJ�^�<�?�\�)�q<\K{d�в�%0UB?u��\ȩز��߻4�үE&bH�a3G7��m�v��!�
1
+ �͆Asa��F��UІpE��`u�Cp�G��50$��LrY(���N}���8J�\驪N>�|K�uD�~K'@vna�4�N��h_�ӹGy��pC�=r]�i�L~��\|���q��!��t܂`XL�%6"8�s$�����S5�����|ӝ9��/ne��n!="3PF�@�S��.�%���L����({��\JV3� Yjz��?�:��`,,�b���"s��q `�O