|
4 | 4 | require 'pathname'
|
5 | 5 | require 'tempfile'
|
6 | 6 |
|
7 |
| -module AngularJS::Rails |
8 |
| - class Updater |
9 |
| - BASE_URL = 'https://code.angularjs.org' |
10 |
| - ROOT_PATH = Pathname.new('vendor/assets/javascripts') |
| 7 | +# Run with `ruby -r "./tasks/angularjs-rails/updater.rb" -e "AngularJS::Rails::Updater.new.build_js('1.2.28')"` |
| 8 | +module AngularJS |
| 9 | + module Rails |
| 10 | + class Updater |
| 11 | + BASE_URL = 'https://code.angularjs.org' |
| 12 | + ROOT_PATH = Pathname.new('vendor/assets/javascripts') |
| 13 | + |
| 14 | + def initialize |
| 15 | + end |
11 | 16 |
|
12 |
| - def initialize |
13 |
| - end |
| 17 | + def base_path |
| 18 | + ROOT_PATH |
| 19 | + end |
14 | 20 |
|
15 |
| - def base_path |
16 |
| - ROOT_PATH |
17 |
| - end |
| 21 | + def update_js! |
| 22 | + if latest_version >= current_gem_version |
| 23 | + clean |
| 24 | + download_files |
| 25 | + update_version_to(latest_version) |
| 26 | + end |
| 27 | + end |
18 | 28 |
|
19 |
| - def update_js! |
20 |
| - if latest_version >= current_gem_version |
| 29 | + def build_js(version) |
21 | 30 | clean
|
22 |
| - download_files |
23 |
| - update_version_to(latest_version) |
| 31 | + download_files(version) |
| 32 | + update_version_to(version) |
24 | 33 | end
|
25 |
| - end |
26 | 34 |
|
27 |
| - def current_gem_version |
28 |
| - raise NotImplementedError |
29 |
| - end |
| 35 | + def current_gem_version |
| 36 | + raise NotImplementedError |
| 37 | + end |
30 | 38 |
|
31 |
| - def available_versions |
32 |
| - upstream_versions.find_all {|v| own_version(v) } |
33 |
| - end |
| 39 | + def available_versions |
| 40 | + upstream_versions.find_all {|v| own_version(v) } |
| 41 | + end |
34 | 42 |
|
35 |
| - def latest_version |
36 |
| - available_versions.last |
37 |
| - end |
| 43 | + def latest_version |
| 44 | + available_versions.last |
| 45 | + end |
38 | 46 |
|
39 |
| - def version_constant_name |
40 |
| - "VERSION" |
41 |
| - end |
| 47 | + def version_constant_name |
| 48 | + "VERSION" |
| 49 | + end |
42 | 50 |
|
43 |
| - private |
| 51 | + private |
44 | 52 |
|
45 |
| - def clean |
46 |
| - base_path.children.each do |f| |
47 |
| - f.delete if f.file? |
| 53 | + def clean |
| 54 | + base_path.children.each do |f| |
| 55 | + f.delete if f.file? |
| 56 | + end |
48 | 57 | end
|
49 |
| - end |
50 | 58 |
|
51 |
| - def update_version_to(version) |
52 |
| - version_file = Pathname.new('lib/angularjs-rails/version.rb') |
53 |
| - content = version_file.read |
54 |
| - version_line = content.lines.find { |l| l =~ /^\s+#{version_constant_name}/ } |
| 59 | + def update_version_to(version) |
| 60 | + version_file = Pathname.new('lib/angularjs-rails/version.rb') |
| 61 | + content = version_file.read |
| 62 | + version_line = content.lines.find { |l| l =~ /^\s+#{version_constant_name}/ } |
55 | 63 |
|
56 |
| - # version_to_convert = Versionomy.parse(version).convert(:rubygems).to_s |
| 64 | + # version_to_convert = Versionomy.parse(version).convert(:rubygems).to_s |
57 | 65 |
|
58 |
| - new_version_line = version_line.gsub(/"[^"]+"/, %Q{"#{version}"}) |
59 |
| - version_file.open('w+') do |f| |
60 |
| - f.write content.gsub(version_line, new_version_line) |
| 66 | + new_version_line = version_line.gsub(/"[^"]+"/, %Q{"#{version}"}) |
| 67 | + version_file.open('w+') do |f| |
| 68 | + f.write content.gsub(version_line, new_version_line) |
| 69 | + end |
61 | 70 | end
|
62 |
| - end |
63 | 71 |
|
64 |
| - def upstream_versions |
65 |
| - @upstream_versions ||= Nokogiri::HTML.parse(open(BASE_URL)). |
66 |
| - css('a').map { |e| Versionomy.parse e.text[0..-2] rescue nil }.compact.sort |
67 |
| - end |
| 72 | + def upstream_versions |
| 73 | + @upstream_versions ||= Nokogiri::HTML.parse(open(BASE_URL)). |
| 74 | + css('a').map { |e| Versionomy.parse e.text[0..-2] rescue nil }.compact.sort |
| 75 | + end |
68 | 76 |
|
69 |
| - def own_version(v) |
70 |
| - true |
71 |
| - end |
| 77 | + def own_version(v) |
| 78 | + true |
| 79 | + end |
72 | 80 |
|
73 |
| - def self.update_js! |
74 |
| - self.new.update_js! |
75 |
| - end |
| 81 | + def self.update_js! |
| 82 | + self.new.update_js! |
| 83 | + end |
76 | 84 |
|
77 |
| - def download_files |
78 |
| - url = BASE_URL + "/" + latest_version.to_s |
79 |
| - Nokogiri::HTML.parse(open(url)). |
80 |
| - css('a'). |
| 85 | + def download_files(version=latest_version) |
| 86 | + url = BASE_URL + "/" + version.to_s |
| 87 | + puts "Fetching #{url}" |
| 88 | + Nokogiri::HTML.parse(open(url)). |
| 89 | + css('a'). |
81 | 90 |
|
82 |
| - #only angular js files |
83 |
| - map{|a| a[:href] =~ /angular[^.]*\.js/ ? a : nil }.compact. |
| 91 | + #only angular js files |
| 92 | + map{|a| a[:href] =~ /angular[^.]*\.js/ ? a : nil }.compact. |
84 | 93 |
|
85 |
| - each do |a| |
86 |
| - download_file(a[:href], url) |
87 |
| - end |
88 |
| - end |
| 94 | + each do |a| |
| 95 | + download_file(a[:href], url) |
| 96 | + end |
| 97 | + end |
89 | 98 |
|
90 |
| - def download_file(file, url) |
91 |
| - full_url = url + "/" + file |
92 |
| - full_path = base_path.join(file) |
93 |
| - full_path.open('w+') do |f| |
94 |
| - f.write open(full_url).read |
| 99 | + def download_file(file, url) |
| 100 | + puts "Downloading #{file} from #{url}" |
| 101 | + full_url = url + "/" + file |
| 102 | + full_path = base_path.join(file) |
| 103 | + full_path.open('w+') do |f| |
| 104 | + f.write open(full_url).read |
| 105 | + end |
95 | 106 | end
|
96 | 107 | end
|
97 | 108 | end
|
|
0 commit comments