Skip to content

Commit 7ecc0cf

Browse files
committed
Allows for building specific versions
1 parent 230fa13 commit 7ecc0cf

File tree

1 file changed

+76
-65
lines changed

1 file changed

+76
-65
lines changed

tasks/angularjs-rails/updater.rb

+76-65
Original file line numberDiff line numberDiff line change
@@ -4,94 +4,105 @@
44
require 'pathname'
55
require 'tempfile'
66

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
1116

12-
def initialize
13-
end
17+
def base_path
18+
ROOT_PATH
19+
end
1420

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
1828

19-
def update_js!
20-
if latest_version >= current_gem_version
29+
def build_js(version)
2130
clean
22-
download_files
23-
update_version_to(latest_version)
31+
download_files(version)
32+
update_version_to(version)
2433
end
25-
end
2634

27-
def current_gem_version
28-
raise NotImplementedError
29-
end
35+
def current_gem_version
36+
raise NotImplementedError
37+
end
3038

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
3442

35-
def latest_version
36-
available_versions.last
37-
end
43+
def latest_version
44+
available_versions.last
45+
end
3846

39-
def version_constant_name
40-
"VERSION"
41-
end
47+
def version_constant_name
48+
"VERSION"
49+
end
4250

43-
private
51+
private
4452

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
4857
end
49-
end
5058

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}/ }
5563

56-
# version_to_convert = Versionomy.parse(version).convert(:rubygems).to_s
64+
# version_to_convert = Versionomy.parse(version).convert(:rubygems).to_s
5765

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
6170
end
62-
end
6371

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
6876

69-
def own_version(v)
70-
true
71-
end
77+
def own_version(v)
78+
true
79+
end
7280

73-
def self.update_js!
74-
self.new.update_js!
75-
end
81+
def self.update_js!
82+
self.new.update_js!
83+
end
7684

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').
8190

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.
8493

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
8998

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
95106
end
96107
end
97108
end

0 commit comments

Comments
 (0)