This repository has been archived by the owner on Apr 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Rakefile
69 lines (58 loc) · 2.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
require 'rubygems'
require 'rake'
require 'rubygems/package_task'
$:.push File.expand_path('../lib', __FILE__)
require 'aloha/rails/version'
gemspec = eval(File.read('locomotive-aloha-rails.gemspec'))
Gem::PackageTask.new(gemspec) do |pkg|
pkg.gem_spec = gemspec
end
desc 'build the gem and release it to rubygems.org'
task :release => :gem do
sh "gem push pkg/locomotive-aloha-rails-#{Aloha::Rails::VERSION}.gem"
end
def step(name)
print "#{name} ..."
yield
puts " DONE"
end
def download(url, filename)
puts "Downloading #{url} ..."
`mkdir -p tmp`
`curl -L -# #{url} -o tmp/#{filename}`
end
desc "Update Aloha Editor to version specified in lib/aloha/rails/version.rb"
task :update => [ :fetch, :extract, :process ]
task :fetch do
download("https://github.com/alohaeditor/Aloha-Editor/archive/alohaeditor-#{Aloha::VERSION}.zip", "alohaeditor.zip")
end
task :extract do
step "Extracting core files" do
`rm -rf tmp/aloha`
`unzip -u tmp/alohaeditor.zip -d tmp`
`mv tmp/Aloha-Editor-alohaeditor-#{Aloha::VERSION}/src tmp/aloha`
`rm -rf tmp/Aloha-Editor-alohaeditor-#{Aloha::VERSION}`
%w(package.json).each { |file| `rm tmp/aloha/#{file}` }
%w(demo test plugins/extra/speak plugins/extra/flag-icons plugins/extra/googletranslate plugins/extra/wai-lang plugins/extra/zemanta plugins/extra/proxy).each { |folder| `rm -rf tmp/aloha/#{folder}` }
%w(1.5.1 1.6.1 1.6 1.7.1).each { |version| `rm tmp/aloha/lib/vendor/jquery-#{version}.js` }
Dir['tmp/aloha/**/demo'].each { |file| `rm -rf #{file}` if File.directory?(file) }
Dir['tmp/aloha/**/test'].each { |file| `rm -rf #{file}` if File.directory?(file) }
`rm -rf vendor/assets/javascripts/aloha`
`mkdir -p vendor/assets/javascripts/aloha`
`mv tmp/aloha vendor/assets/javascripts/.`
end
end
task :process do
step "Fixing file encoding" do
Dir["vendor/assets/javascripts/aloha/**/*.js"].each do |file|
contents = File.read(file).encode('UTF-8', 'ISO-8859-1')
File.open(file, 'w') { |f| f.write(contents) }
end
end
step "Wrong color in the aloha.css file" do
file = 'vendor/assets/javascripts/aloha/css/aloha.css'
content = File.read(file)
content.gsub!('#NaNbbaaNaN00NaN00NaN00NaN00NaN', '#000')
File.open(file, 'w') { |f| f.write(content) }
end
end