flutter_on_rails 0.0.1.alpha → 0.0.3.alpha
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/LICENSE +1 -1
- data/README.md +49 -17
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83848cbcce6778190529afdfb309413f603430cf177d18da8427f55cdb22849b
|
4
|
+
data.tar.gz: c47057705313fa183e2b3848917169da7b8af372e0ec33dccc6f05fed6a96b31
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f73b520c27172eb13c6d2f570aaf830653c8c1346c008dba13ea8c39423b85f7dfe1d5268c372dad6ddc482f92d2119d002c05c4677555a8980e79492164a67
|
7
|
+
data.tar.gz: 79c998d31ce7814f6cd159df0c001a6304bc4bbb08187da246a36081c158dbedfb95370dce486a8dd90f278ca9405d6919d30b65864388d36b08df9b31723ae1
|
data/LICENSE
CHANGED
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,41 +1,73 @@
|
|
1
1
|
# Flutter on Rails CLI
|
2
2
|
|
3
|
-
|
3
|
+
Flutter on Rails CLI is a powerful tool that helps you create and manage Flutter applications with Rails backend integration.
|
4
4
|
|
5
|
-
##
|
5
|
+
## Prerequisites
|
6
|
+
|
7
|
+
Before using Flutter on Rails CLI, make sure you have:
|
8
|
+
|
9
|
+
1. **Flutter SDK** installed:
|
6
10
|
|
7
|
-
|
8
|
-
|
11
|
+
- [Install Flutter](https://docs.flutter.dev/get-started/install) for your operating system
|
12
|
+
- After installation, verify it's working by running:
|
13
|
+
```bash
|
14
|
+
flutter doctor
|
15
|
+
```
|
16
|
+
- Make sure to follow any additional setup instructions provided by `flutter doctor`
|
17
|
+
|
18
|
+
2. **Ruby** installed on your system
|
19
|
+
|
20
|
+
## Installation
|
9
21
|
|
10
22
|
```bash
|
11
|
-
|
23
|
+
gem install flutter_on_rails
|
12
24
|
```
|
13
25
|
|
14
26
|
## Usage
|
15
27
|
|
16
|
-
|
28
|
+
Create a new Flutter on Rails application:
|
17
29
|
|
18
30
|
```bash
|
19
|
-
|
31
|
+
frails create
|
32
|
+
# or
|
33
|
+
flutter_on_rails create
|
20
34
|
```
|
21
35
|
|
22
|
-
|
36
|
+
Run the application:
|
23
37
|
|
24
|
-
|
25
|
-
|
26
|
-
|
38
|
+
```bash
|
39
|
+
frails run
|
40
|
+
# or
|
41
|
+
flutter_on_rails run
|
42
|
+
```
|
27
43
|
|
28
|
-
|
44
|
+
Build the application for a specific platform:
|
29
45
|
|
30
46
|
```bash
|
31
|
-
|
47
|
+
frails build [platform]
|
48
|
+
# or
|
49
|
+
flutter_on_rails build [platform]
|
32
50
|
```
|
33
51
|
|
34
|
-
|
52
|
+
Available platforms:
|
53
|
+
|
54
|
+
- android
|
55
|
+
- ios
|
56
|
+
- windows
|
57
|
+
- macos
|
58
|
+
- linux
|
59
|
+
|
60
|
+
## Commands
|
61
|
+
|
62
|
+
- `frails create` or `flutter_on_rails create` - Create a new Flutter on Rails application
|
63
|
+
- `frails run` or `flutter_on_rails run` - Run the Flutter app in debug mode
|
64
|
+
- `frails build` or `flutter_on_rails build` - Build Flutter app for different platforms
|
65
|
+
- `frails apply` or `flutter_on_rails apply` - Apply configurations (splash_screen or icon_launcher)
|
66
|
+
- `frails install` or `flutter_on_rails install` - Install dependencies
|
67
|
+
|
68
|
+
## License
|
35
69
|
|
36
|
-
|
37
|
-
- Let you choose build type (debug/release)
|
38
|
-
- Build the application for the selected platform
|
70
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
39
71
|
|
40
72
|
## Features
|
41
73
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flutter_on_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3.alpha
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Moussa Ali
|
@@ -140,7 +140,8 @@ files:
|
|
140
140
|
homepage: https://github.com/AdamMusa/flutter_on_rails_cli
|
141
141
|
licenses:
|
142
142
|
- MIT
|
143
|
-
metadata:
|
143
|
+
metadata:
|
144
|
+
documentation_uri: https://github.com/AdamMusa/flutter_on_rails_cli#readme
|
144
145
|
rdoc_options: []
|
145
146
|
require_paths:
|
146
147
|
- lib
|
@@ -148,7 +149,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
148
149
|
requirements:
|
149
150
|
- - ">="
|
150
151
|
- !ruby/object:Gem::Version
|
151
|
-
version: '
|
152
|
+
version: '0'
|
152
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
153
154
|
requirements:
|
154
155
|
- - ">="
|