-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
17 lines (16 loc) · 781 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "dynamic_variable"
gemspec.summary = "Provides dynamically scoped variables."
gemspec.description = "Occasionally a method's behavior should depend on the context in which it is called. What is happening above me on the stack? DynamicVariable helps you in these context dependent situations."
gemspec.email = "[email protected]"
gemspec.homepage = "https://github.com/wtaysom/Ruby-DynamicVariable"
gemspec.authors = ["William Taysom"]
gemspec.add_development_dependency('jeweler', '~> 1.4')
gemspec.add_development_dependency('rspec', '~> 2.0')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end