cocoapods-embed-flutter 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 471eb33cb4b395feb321e162537e6f2bc5edd026ce7460842c446fd22f6daecc
4
- data.tar.gz: 4f12be7ae404447c898e4602cd7ce70191c7e18c55fa62308ccfaf3ffc2b23c0
3
+ metadata.gz: d9ae5dc943a0d203ecb44df0c993c74efc577a0bf6df91307542b481742ab57d
4
+ data.tar.gz: 24c2f07b53107ce278b2258e75b561eed8ae2ab0091ee042160d37bc7a139b35
5
5
  SHA512:
6
- metadata.gz: 70cabc00a991ab2d31a09428bdf14a9f1d6f2a3640065ca56f36ed630ff867228c666767de4300a1dc4d0679b65556beff82bc314728cb468d5432a6e75ab1e2
7
- data.tar.gz: 1715cc8592d8fe62f4e99314c98c18f2430647a1403a39dea6df732e17248e2a677ceae42f65a2c24f3d179aba86a69b6f72dc6c775fa82e270cf529be20a162
6
+ metadata.gz: 84712a81b102bfd17f404149e36638808c327dad94baf6c1de05de92c1f661bfc923337f8d90d8a0d5ec26ddfecf5d77f74771266ec871db9a9bedbce7d30959
7
+ data.tar.gz: a1a8c364d1f099cb957f57bba3eb2fb980563ed4ad794eff8b51d4d42246a2cfeedb08d94b04a33126c27f49bf11ffbd9b967c020e7654f79b49a8bab21b788c
@@ -32,7 +32,7 @@ jobs:
32
32
 
33
33
  steps:
34
34
  - name: Checkout repository
35
- uses: actions/checkout@v2
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@v2
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@v2
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-embed-flutter (0.5.0)
4
+ cocoapods-embed-flutter (0.5.1)
5
5
  cocoapods
6
6
  fileutils
7
7
  yaml
data/README.md CHANGED
@@ -1,16 +1,22 @@
1
1
  # cocoapods-embed-flutter
2
2
 
3
+ [![CI/CD](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/main.yml/badge.svg?branch=main&event=push)](https://github.com/DartBuild/cocoapods-embed-flutter/actions/workflows/main.yml)
3
4
  [![Gem Version](https://badge.fury.io/rb/cocoapods-embed-flutter.svg)](http://badge.fury.io/rb/cocoapods-embed-flutter)
4
- <!--- [![Code Climate](https://codeclimate.com/github/DartBuild/cocoapods-embed-flutter.png)](https://codeclimate.com/github/DartBuild/cocoapods-embed-flutter) -->
5
+ [![Code Climate](https://codeclimate.com/github/DartBuild/cocoapods-embed-flutter.png)](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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- cocoapods-embed-flutter (0.5.0)
4
+ cocoapods-embed-flutter (0.5.1)
5
5
  cocoapods
6
6
  fileutils
7
7
  yaml
@@ -4,5 +4,5 @@
4
4
  module CocoapodsEmbedFlutter
5
5
  # The version of the cocoapods-embed-flutter.
6
6
  #
7
- VERSION = '0.5.1'.freeze
7
+ VERSION = '0.5.2'.freeze
8
8
  end
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.1
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 00:00:00.000000000 Z
11
+ date: 2022-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yaml