forked from brendanlim/mobile-fu
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Rakefile
41 lines (32 loc) · 1.23 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
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'json'
require 'httparty'
MOBILE_DETECT_JSON = 'https://raw.github.com/serbanghita/Mobile-Detect/master/Mobile_Detect.json'
TABLET_FILE = 'lib/mobile-fu/tablet.rb'
task :default => [:test]
Rake::TestTask.new do |t|
t.libs.push 'lib'
t.test_files = FileList['spec/*_spec.rb', 'spec/mobile-fu/*_spec.rb']
t.verbose = true
end
desc "Pull in data from Mobile Detect"
task :pull_mobile_detect_data do
# call out to Mobile Detect to get the data
content = HTTParty.get(MOBILE_DETECT_JSON).body
# build a new tablet regex
data = JSON.parse content
regexes = data['uaMatch']['tablets'].each.map { |_, v| v }
new_regex = regexes.join('|').downcase
# rewrite the tablet regex in our file
new_content = File.read(TABLET_FILE).gsub!(/TABLET_USER_AGENTS = \/.*\//, "TABLET_USER_AGENTS = \/#{new_regex}\/")
File.open(TABLET_FILE, 'w') { |f| f.write new_content }
end
# desc 'Generate documentation for the mobile_fu plugin.'
# Rake::RDocTask.new(:rdoc) do |rdoc|
# rdoc.rdoc_dir = 'rdoc'
# rdoc.title = 'MobileFu'
# rdoc.options << '--line-numbers' << '--inline-source'
# rdoc.rdoc_files.include('README')
# rdoc.rdoc_files.include('lib/**/*.rb')
# end