-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRakefile
41 lines (36 loc) · 1.02 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'rake'
require 'spec/rake/spectask'
desc 'Default: run specs.'
task :default => :spec
desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
t.spec_files = FileList['spec/**/*_spec.rb']
end
PKG_FILES = FileList[
'[a-zA-Z]*',
'generators/**/*',
'lib/**/*',
'rails/**/*',
'tasks/**/*',
'spec/**/*'
]
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "url_field"
s.version = "0.0.2"
s.author = "Paul Campbell"
s.email = "paul@rslw.com"
s.homepage = "http://www.github.com/paulca/url_field"
s.platform = Gem::Platform::RUBY
s.summary = "A simple ActiveRecord plugin to correctly format a URL in the database whether the user enters 'http://' or not"
s.files = PKG_FILES.to_a
s.require_path = "lib"
s.has_rdoc = false
s.extra_rdoc_files = ["README.textile"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
Jeweler::GemcutterTasks.new