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 CHANGED
@@ -7,6 +7,7 @@ gem "oauth2"
7
7
  gem "json"
8
8
  gem "rest-client", :require => "rest_client"
9
9
  gem "i18n"
10
+ gem "typhoeus"
10
11
 
11
12
  group :development do
12
13
  gem "jeweler"
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.7.1
1
+ 1.8.0