cocoapods-embed-flutter 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +4 -4
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/README.md +16 -1
- data/example/ios_app/Gemfile.lock +1 -1
- data/lib/cocoapods-embed-flutter/gem_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9ae5dc943a0d203ecb44df0c993c74efc577a0bf6df91307542b481742ab57d
|
|
4
|
+
data.tar.gz: 24c2f07b53107ce278b2258e75b561eed8ae2ab0091ee042160d37bc7a139b35
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84712a81b102bfd17f404149e36638808c327dad94baf6c1de05de92c1f661bfc923337f8d90d8a0d5ec26ddfecf5d77f74771266ec871db9a9bedbce7d30959
|
|
7
|
+
data.tar.gz: a1a8c364d1f099cb957f57bba3eb2fb980563ed4ad794eff8b51d4d42246a2cfeedb08d94b04a33126c27f49bf11ffbd9b967c020e7654f79b49a8bab21b788c
|
data/.github/workflows/main.yml
CHANGED
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
|
|
33
33
|
steps:
|
|
34
34
|
- name: Checkout repository
|
|
35
|
-
uses: actions/checkout@
|
|
35
|
+
uses: actions/checkout@v3
|
|
36
36
|
|
|
37
37
|
- name: Setup Ruby
|
|
38
38
|
uses: ruby/setup-ruby@v1
|
|
@@ -67,18 +67,18 @@ jobs:
|
|
|
67
67
|
|
|
68
68
|
cd:
|
|
69
69
|
name: Build and Publish
|
|
70
|
-
if: (github.event_name == 'push' && needs.ci.outputs.release) || (github.event_name == 'workflow_dispatch' && github.event.inputs.release)
|
|
70
|
+
if: (github.event_name == 'push' && needs.ci.outputs.release == 'true') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release == 'true')
|
|
71
71
|
needs: ci
|
|
72
72
|
runs-on: ubuntu-latest
|
|
73
73
|
|
|
74
74
|
steps:
|
|
75
75
|
- name: Checkout repository
|
|
76
|
-
uses: actions/checkout@
|
|
76
|
+
uses: actions/checkout@v3
|
|
77
77
|
with:
|
|
78
78
|
fetch-depth: 0
|
|
79
79
|
|
|
80
80
|
- name: Setup node
|
|
81
|
-
uses: actions/setup-node@
|
|
81
|
+
uses: actions/setup-node@v3
|
|
82
82
|
with:
|
|
83
83
|
node-version: '17'
|
|
84
84
|
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
### [0.5.2](https://github.com/DartBuild/cocoapods-embed-flutter/compare/v0.5.1...v0.5.2) (2022-03-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 📚 Documentation
|
|
5
|
+
|
|
6
|
+
* add helpful links and badges ([4ab6983](https://github.com/DartBuild/cocoapods-embed-flutter/commit/4ab69837d5057a0049e1533a00c6209556aec5b0))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### 💡 Continuous Integration
|
|
10
|
+
|
|
11
|
+
* **Deps:** bump actions/checkout from 2 to 3 ([#2](https://github.com/DartBuild/cocoapods-embed-flutter/issues/2)) ([3d1ca07](https://github.com/DartBuild/cocoapods-embed-flutter/commit/3d1ca0732a87e04561bc68ba1bbfc337173cd783))
|
|
12
|
+
* **Deps:** bump actions/setup-node from 2 to 3 ([#3](https://github.com/DartBuild/cocoapods-embed-flutter/issues/3)) ([efd8f1a](https://github.com/DartBuild/cocoapods-embed-flutter/commit/efd8f1a82ce8ca6cd12adc1e5ca943a316a44b03))
|
|
13
|
+
|
|
1
14
|
### [0.5.1](https://github.com/DartBuild/cocoapods-embed-flutter/compare/v0.5.0...v0.5.1) (2022-03-11)
|
|
2
15
|
|
|
3
16
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
# cocoapods-embed-flutter
|
|
2
2
|
|
|
3
|
+
[](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/main.yml)
|
|
3
4
|
[](http://badge.fury.io/rb/cocoapods-embed-flutter)
|
|
4
|
-
|
|
5
|
+
[](https://codeclimate.com/github/DartBuild/cocoapods-embed-flutter)
|
|
5
6
|
|
|
6
7
|
Straight forward way of declaring flutter modules as dependency for targets, just like cocoapods does with pods.
|
|
7
8
|
|
|
8
9
|
## Installation
|
|
9
10
|
|
|
11
|
+
### Install using command line.
|
|
10
12
|
```bash
|
|
11
13
|
$ [sudo] gem install cocoapods-embed-flutter
|
|
12
14
|
```
|
|
13
15
|
|
|
16
|
+
### Or add this to your `Gemfile`.
|
|
17
|
+
```rb
|
|
18
|
+
gem 'cocoapods-embed-flutter'
|
|
19
|
+
```
|
|
14
20
|
## Usage
|
|
15
21
|
|
|
16
22
|
In your host project `Podfile`, write the below line before any target definition
|
|
@@ -33,3 +39,12 @@ pub 'flutter_module', :git => 'https://github.com/gowalla/flutter_module.git', :
|
|
|
33
39
|
pub 'flutter_module', :git => 'https://github.com/gowalla/flutter_module.git', :tag => '0.7.0'
|
|
34
40
|
pub 'flutter_module', :git => 'https://github.com/gowalla/flutter_module.git', :commit => '082f8319af'
|
|
35
41
|
```
|
|
42
|
+
|
|
43
|
+
## Links
|
|
44
|
+
|
|
45
|
+
| Link | Description |
|
|
46
|
+
| :----- | :------ |
|
|
47
|
+
[Gem page](https://rubygems.org/gems/cocoapods-embed-flutter) | Official Ruby Gems page.
|
|
48
|
+
[Code docs](https://www.rubydoc.info/gems/cocoapods-embed-flutter) | Generated code documentation.
|
|
49
|
+
[Changelog](https://github.com/DartBuild/cocoapods-embed-flutter/blob/main/CHANGELOG.md) | See the changes introduced in each version.
|
|
50
|
+
[Code of Conduct](CODE_OF_CONDUCT.md) | Find out the standards we hold ourselves to.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-embed-flutter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soumya Ranjan Mahunt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: yaml
|