forked from DavyJonesLocker/client_side_validations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
105 lines (88 loc) · 2.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
require 'bundler'
require File.join(File.expand_path('..', __FILE__), 'coffeescript/processor')
Bundler::GemHelper.install_tasks
require 'rubocop/rake_task'
RuboCop::RakeTask.new
task default: [:rubocop, 'test:ruby']
require 'rake/testtask'
namespace :test do
desc %(Run all tests)
task all: [:rubocop, 'test:ruby', 'test:js']
desc %(Test Ruby code)
Rake::TestTask.new(:ruby) do |test|
test.libs << 'lib' << 'test'
test.test_files = Dir.glob("#{File.dirname(__FILE__)}/test/**/test_*.rb").sort
test.warning = false
end
desc %(Test Javascript code)
multitask js: ['test:server', 'test:open']
desc %(Starts the test server)
task :server do
system 'bundle exec ruby test/javascript/server.rb'
end
desc %(Starts the test server which reloads everything on each refresh)
task :reloadable do
exec "bundle exec shotgun test/javascript/config.ru -p #{PORT} --server thin"
end
task :open do
url = "http://localhost:#{PORT}"
puts "Opening test app at #{url} ..."
sleep 3
system(*browse_cmd(url))
end
end
desc %(Regenerate and commit JavaScript file)
task :regenerate_javascript do
regenerate_javascript
end
Rake::Task[:build].instance_eval { @actions.clear }
task :build do
regenerate_javascript
perform_git_commit
Bundler::GemHelper.new(Dir.pwd).build_gem
end
def perform_git_commit
sh_with_code('git add vendor')
_, code = sh_with_code('git commit -m "Regenerated JavaScript"')
if code == 0
puts 'Committed changes'
else
puts 'Nothing to commit'
end
end
def regenerate_javascript
ClientSideValidations::Processor.run
puts 'Regenerated JavaScript'
end
def sh_with_code(cmd, &block)
cmd << ' 2>&1'
outbuf = ''
Bundler.ui.debug(cmd)
Dir.chdir(Dir.pwd) do
outbuf = `#{cmd}`
yield outbuf if $CHILD_STATUS == 0 && block
end
[outbuf, $CHILD_STATUS]
end
PORT = 4567
# Returns an array e.g.: ['open', 'http://example.com']
def browse_cmd(url)
require 'rbconfig'
browser = ENV['BROWSER'] ||
(RbConfig::CONFIG['host_os'].include?('darwin') && 'open') ||
(RbConfig::CONFIG['host_os'] =~ /msdos|mswin|djgpp|mingw|windows/ && 'start') ||
%w(xdg-open x-www-browser firefox opera mozilla netscape).find { |comm| which comm }
abort('ERROR: no web browser detected') unless browser
Array(browser) << url
end
# which('ruby') #=> /usr/bin/ruby
def which(cmd)
exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
exts.each do |ext|
exe = "#{path}/#{cmd}#{ext}"
return exe if File.executable? exe
end
end
nil
end