File: Rakefile

package info (click to toggle)
ruby-rails-timeago 2.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 524 kB
  • sloc: javascript: 2,394; ruby: 376; makefile: 10
file content (47 lines) | stat: -rw-r--r-- 1,527 bytes parent folder | download
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
#!/usr/bin/env rake
# frozen_string_literal: true

require 'rake/release'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)

task default: :spec

desc 'Update jquery-timeago from upstream'
task :update do
  puts 'Clone repository..'
  puts `mkdir ./tmp`
  puts `git clone https://github.com/rmm5t/jquery-timeago.git ./tmp`

  puts 'Patch jquery timeago...'
  puts `cd ./tmp && patch -p1 < ../scripts/jquery.timeago.js.patch`

  print 'Patch locale files ... '
  `rm ./tmp/locales/jquery.timeago.en.js`

  is_mac = RUBY_PLATFORM.downcase.include?('darwin')

  Dir['./tmp/locales/*.js'].each do |file|
    if file =~ /jquery\.timeago\.(.+)\.js$/
      `sed -i#{is_mac ? " ''" : nil} "s/timeago.settings.strings/timeago.settings.strings[\\"#{Regexp.last_match(1)}\\"]/" #{file}`
      print "#{Regexp.last_match(1)} "
    end
  end
  puts

  puts 'Copying asset files...'
  puts `cp ./tmp/jquery.timeago.js ./vendor/assets/javascripts/`
  puts `rm ./vendor/assets/javascripts/locales/*`
  puts `cp ./tmp/locales/*.js ./vendor/assets/javascripts/locales`

  puts 'Generate rails-timeago-all.js...'
  `echo "// Rails timeago bootstrap with all locales" > ./lib/assets/javascripts/rails-timeago-all.js`
  `echo "//= require rails-timeago" >> ./lib/assets/javascripts/rails-timeago-all.js`
  Dir['./vendor/assets/javascripts/locales/*.js'].sort.each do |file|
    `echo "//= require locales/#{File.basename(file)}" >> ./lib/assets/javascripts/rails-timeago-all.js`
  end

  puts 'Clean up...'
  puts `rm -rf ./tmp`
end