File tree Expand file tree Collapse file tree 7 files changed +28
-6
lines changed
Expand file tree Collapse file tree 7 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -171,4 +171,8 @@ build-iPhoneSimulator/
171171.rvmrc
172172
173173# Used by RuboCop. Remote config files pulled in from inherit_from directive.
174- # .rubocop-https?--*
174+ # .rubocop-https?--*
175+
176+ # Node.js Tools for Visual Studio
177+ .ntvs_analysis.dat
178+ node_modules /
Original file line number Diff line number Diff line change 1111 specs:
1212 CFPropertyList (3.0.5 )
1313 rexml
14- activesupport (6.1.4.6 )
14+ activesupport (6.1.4.7 )
1515 concurrent-ruby (~> 1.0 , >= 1.0.2 )
1616 i18n (>= 1.6 , < 2 )
1717 minitest (>= 5.1 )
Original file line number Diff line number Diff line change @@ -9,5 +9,16 @@ task :specs do
99 sh "bundle exec bacon #{ specs ( '**' ) } "
1010end
1111
12+ desc 'Setup example project'
13+ task :demo do
14+ system ( 'bundle install' , exception : true )
15+ Bundler . with_clean_env do
16+ Dir . chdir ( 'example/ios_app' ) do |path |
17+ system ( 'bundle install' , exception : true )
18+ system ( 'bundle exec pod install' , exception : true )
19+ end
20+ end
21+ end
22+
1223task :default => :specs
1324
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
3- gem 'cocoapods' , '~> 1.11.2'
3+ gem 'cocoapods'
44gem 'cocoapods-embed-flutter' , :path => '../../'
Original file line number Diff line number Diff line change 1111 specs:
1212 CFPropertyList (3.0.5 )
1313 rexml
14- activesupport (6.1.4.6 )
14+ activesupport (6.1.4.7 )
1515 concurrent-ruby (~> 1.0 , >= 1.0.2 )
1616 i18n (>= 1.6 , < 2 )
1717 minitest (>= 5.1 )
@@ -101,7 +101,7 @@ PLATFORMS
101101 universal-darwin-21
102102
103103DEPENDENCIES
104- cocoapods ( ~> 1.11.2 )
104+ cocoapods
105105 cocoapods-embed-flutter !
106106
107107BUNDLED WITH
Original file line number Diff line number Diff line change 1+ require_relative 'spec_helper'
2+
3+ describe 'Plugin info test' do
4+ it 'checks name' do
5+ CocoapodsEmbedFlutter ::NAME . should . equal 'cocoapods-embed-flutter'
6+ end
7+ end
Original file line number Diff line number Diff line change 1010require 'pathname'
1111require 'cocoapods'
1212
13- Mocha :: Configuration . prevent ( : stubbing_non_existent_method)
13+ Mocha . configure { | c | c . stubbing_non_existent_method = :prevent }
1414
1515require 'cocoapods_plugin'
1616
You can’t perform that action at this time.
0 commit comments