forked from ruby-oembed/ruby-oembed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
32 lines (28 loc) · 1.22 KB
/
Copy pathRakefile
File metadata and controls
32 lines (28 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require File.expand_path(File.join(__FILE__, '../lib/oembed/version'))
begin
require 'jeweler'
Dir[File.join(File.dirname(__FILE__), "lib/tasks/*.rake")].sort.each { |ext| load ext }
Jeweler::Tasks.new do |gemspec|
gemspec.name = "ruby-oembed"
gemspec.version = OEmbed::Version
gemspec.homepage = "http://github.com/judofyr/ruby-oembed"
gemspec.summary = "oEmbed for Ruby"
gemspec.description = "An oEmbed consumer library written in Ruby, letting you easily get embeddable HTML representations of supported web pages, based on their URLs. See http://oembed.com for more information about the protocol."
gemspec.license = "MIT"
gemspec.email = "arisbartee@gmail.com"
gemspec.authors = ["Magnus Holm","Alex Kessinger","Aris Bartee","Marcos Wright Kuhns"]
gemspec.add_development_dependency("json")
gemspec.add_development_dependency("xml-simple")
gemspec.add_development_dependency("rspec", ">=2.0")
gemspec.rdoc_options = %W(
--main README.rdoc
--title #{gemspec.full_name}
--inline-source
--exclude tasks
CHANGELOG.rdoc
)
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end