forked from appoxy/mini_fb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
23 lines (21 loc) · 737 Bytes
/
Rakefile
File metadata and controls
23 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
begin
require 'jeweler2'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "mini_fb"
gemspec.summary = "Tiny facebook library"
gemspec.description = "Tiny facebook library"
gemspec.email = "travis@appoxy.com"
gemspec.homepage = "http://github.com/appoxy/mini_fb"
gemspec.authors = ["Travis Reeder"]
gemspec.files = FileList['lib/**/*.rb']
gemspec.add_dependency 'rest-client'
gemspec.add_dependency 'hashie'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler2"
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = ["--color", '--format doc']
end