-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathRakefile
110 lines (90 loc) · 2.92 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
106
107
108
109
110
require 'bundler/gem_tasks'
require 'rake/testtask'
gemspec = eval(File.read(Dir['*.gemspec'].first))
gemfile = "#{[gemspec.name, gemspec.version].join('-')}.gem"
# Integrate Rubocop if available
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new
task(:default).prerequisites << task(:rubocop)
rescue LoadError
task :rubocop do
puts 'Install rubocop to run its rake tasks'
end
end
desc 'Validate gemspec'
task :gemspec do
gemspec.validate
end
desc 'Run minitest'
task :test do
Rake::TestTask.new do |t|
t.libs << 'spec'
t.test_files = FileList['spec/**/*_spec.rb']
t.warning = true
t.verbose = true
end
end
task build: :chmod
## desc 'Install gem'
## task :install => :build do
## system "sudo -Es sh -c \'umask 022; gem install gems/#{file}\'"
## end
desc 'Remove gems'
task :clean do
FileUtils.rm_rf 'pkg'
end
desc 'Tag the release'
task :tag do
system "git tag #{gemspec.version} -m 'Release #{gemspec.version}'"
end
desc 'Push to rubygems'
task push: :tag do
system "gem push pkg/#{gemfile}"
end
desc 'Normalise file permissions'
task :chmod do
xbit = %w[]
dirs = []
%x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }.each do |file|
dirs.push(File.dirname(file))
xbit.include?(file) ? File.chmod(0o0755, file) : File.chmod(0o0644, file)
end
dirs.sort.uniq.each { |dir| File.chmod(0o0755, dir) }
end
desc 'Copy web packages from npm into public'
task :weblibs do
weblibs = []
fonts = []
# jQuery
weblibs << 'node_modules/jquery/dist/jquery.js'
# Bootstrap
weblibs << 'node_modules/bootstrap/dist/js/bootstrap.js'
weblibs << 'node_modules/bootstrap/dist/js/bootstrap.js.map'
weblibs << 'node_modules/bootstrap/dist/css/bootstrap.css'
weblibs << 'node_modules/bootstrap/dist/css/bootstrap.css.map'
weblibs << 'node_modules/bootstrap/dist/js/bootstrap.bundle.js'
weblibs << 'node_modules/bootstrap/dist/js/bootstrap.bundle.js.map'
# Bootstrap-icons
weblibs << 'node_modules/bootstrap-icons/font/bootstrap-icons.css'
fonts << 'node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff'
fonts << 'node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2'
# Datatables
weblibs << 'node_modules/datatables.net/js/dataTables.js'
# Datatables + Bootstrap
weblibs << 'node_modules/datatables.net-bs5/js/dataTables.bootstrap5.js'
weblibs << 'node_modules/datatables.net-bs5/css/dataTables.bootstrap5.css'
# Datatables Buttons + Bootstrap
weblibs << 'node_modules/datatables.net-buttons-bs5/js/buttons.bootstrap5.js'
weblibs << 'node_modules/datatables.net-buttons-bs5/css/buttons.bootstrap5.css'
# colVis
weblibs << 'node_modules/datatables.net-buttons/js/dataTables.buttons.js'
weblibs << 'node_modules/datatables.net-buttons/js/buttons.colVis.js'
weblibs.each do |w|
cp(w, 'lib/oxidized/web/public/weblibs')
end
fonts.each do |f|
cp(f, 'lib/oxidized/web/public/weblibs/fonts')
end
end
task default: :test