-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
42 lines (36 loc) · 1.51 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
42
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require(File.join(File.dirname(__FILE__), 'config', 'boot'))
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'tasks/rails'
desc 'Removes trailing whitespace'
task :whitespace do
sh %{find . -name '*.*rb' -exec sed -i '' 's/\t/ /g' {} \\; -exec sed -i '' 's/ *$//g' {} \\; }
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = %q{refinerycms}
s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.}
s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.authors = ["Resolve Digital", "David Jones", "Philip Arndt"]
s.extra_rdoc_files = %w(README CONTRIBUTORS LICENSE)
end
namespace :version do
namespace :bump do
desc "Bump the gemspec by a build version."
task :build => [:version_required, :version] do
version = Jeweler::VersionHelper.new(RAILS_ROOT)
version.update_to(version.major, version.minor, version.patch, ((version.build || 0).to_i + 1))
version.write
$stdout.puts "Updated version: #{version.to_s}"
end
end
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end