-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
26 lines (23 loc) · 837 Bytes
/
Rakefile
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
require "rubygems"
require "rake/testtask"
task :default => :test
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList["test/test_*.rb"]
t.verbose = true
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "nordea-rb"
gemspec.summary = "Ruby library for accessing your Nordea Bank account and transferring money between your own accounts."
gemspec.description = "Ruby library for accessing your Nordea Bank account and transferring money between your own accounts."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/haraldmartin/nordea-rb"
gemspec.authors = ["Martin Ström"]
gemspec.add_dependency 'hpricot'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end