fbgraph 1.7.1 → 1.8.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.
- data/Gemfile +1 -0
- data/Rakefile +1 -4
- data/VERSION +1 -1
- data/lib/fbgraph/cacert.pem +3665 -0
- data/lib/fbgraph/client.rb +17 -5
- data/lib/fbgraph.rb +13 -8
- data/specs/lib/fbauth/base_spec.rb +1 -1
- data/specs/lib/fbauth/selection_spec.rb +2 -2
- data/specs/spec_helper.rb +2 -2
- metadata +58 -30
- data/fbgraph.gemspec +0 -139
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -16,19 +16,16 @@ begin
|
|
|
16
16
|
s.homepage = "http://github.com/nsanta/fbgraph"
|
|
17
17
|
s.author = "Nicolas Santa"
|
|
18
18
|
s.email = "nicolas55ar@gmail.com"
|
|
19
|
+
s.files = FileList["[A-Z]*", "{.bundle,bin,lib,specs}/**/*"] - ["Gemfile.lock"]
|
|
19
20
|
s.add_bundler_dependencies
|
|
20
21
|
end
|
|
21
22
|
rescue LoadError
|
|
22
23
|
puts "Jeweler not available. Install it with: gem install jeweler"
|
|
23
24
|
end
|
|
24
25
|
|
|
25
|
-
|
|
26
|
-
spec_files = FileList[File.join(File.dirname(__FILE__), 'specs', '**', '*_spec.rb')]
|
|
27
|
-
|
|
28
26
|
desc "Run all specs"
|
|
29
27
|
RSpec::Core::RakeTask.new do |t|
|
|
30
28
|
t.pattern = "./specs/**/*_spec.rb"
|
|
31
29
|
# t.rcov = true
|
|
32
30
|
# t.rcov_opts = t.rcov_opts = ['--exclude', 'spec']
|
|
33
31
|
end
|
|
34
|
-
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.8.0
|