Skip to content

Commit cfdf6ca

Browse files
committed
Update HTMLKit to 4.2
1 parent 3206b00 commit cfdf6ca

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.gitignore

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
htmldoc
2-
pkg
3-
webgen-tmp
4-
build
1+
.bundle
2+
.idea
53
.repl_history
4+
build
5+
build-log
66
debugger_cmds
77
Gemfile.lock
8+
htmldoc
9+
pkg
10+
webgen-tmp
811
vendor
9-
.idea

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
source 'https://rubygems.org'
44

55
gem 'rake'
6+
gem 'rubocop'
7+
gem 'rubocop-performance'
8+
gem 'rubocop-rspec'
69

710
gemspec

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ testing = true if ARGV.join(' ') =~ /spec/
99
require "motion/project/template/#{platform}"
1010
require 'rubygems'
1111

12+
raise 'export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES' unless ENV['OBJC_DISABLE_INITIALIZE_FORK_SAFETY'] == 'YES'
13+
1214
begin
1315
require 'bundler'
1416
testing ? Bundler.require(:default, :spec) : Bundler.require
@@ -27,6 +29,9 @@ Motion::Project::App.setup do |app|
2729
# which is the latest non-beta
2830
app.sdk_version = '13.5'
2931
app.deployment_target = '13.5'
32+
else
33+
app.sdk_version = '11.1'
34+
app.deployment_target = '11.1'
3035
end
3136

3237
app.detect_dependencies = true

lib/motion-html-pipeline.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
app.files.unshift(Dir.glob(File.join(lib_dir_path, "motion-html-pipeline/**/*.rb")))
1212

1313
app.pods do
14-
pod 'HTMLKit', '~> 3.1'
14+
pod 'HTMLKit', '~> 4.2'
1515
end
1616
end

lib/motion-html-pipeline/pipeline/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module MotionHTMLPipeline
44
class Pipeline
5-
VERSION = '0.3'.freeze
5+
VERSION = '0.4.2'.freeze
66
end
77
end

0 commit comments

Comments
 (0)