bionic 0.0.2.rc2 → 0.0.2.rc3
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/README.md +30 -0
- data/lib/bionic/cli/template/Gemfile +1 -0
- data/lib/bionic/cli/template/bin/run +0 -1
- data/lib/bionic/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4dba1a14d3b42332506df25a3b4c9329d240d526a46d96af5403a0ecf11b9e82
|
4
|
+
data.tar.gz: 9c5925cc16ee4293a2c71e7d1f7ac605462ed7756bb50ac3e8273a775b9787c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3baa0845b6a180ad37dc5de604ca5691c9b37dff1efc9c679bb4d98616d4d6b75397bb1e8832603b71ee7473311cac0ac1c85a1bc615503bc2af8fc6bb84476b
|
7
|
+
data.tar.gz: f766e8c4b0d46b2ead2a46596bc38076351f68640c07727c447b2ac25c62faba55ad94489a1c012180b3679d7ab90a35a1b4217c10dc1a3d48b17d86d36b45fb
|
data/README.md
CHANGED
@@ -54,6 +54,36 @@ All text after base part of command will be split with `,` and passed to a handl
|
|
54
54
|
|
55
55
|
If there is no necessary handler you will see a corresponding message in logs.
|
56
56
|
|
57
|
+
## Project structure
|
58
|
+
|
59
|
+
```
|
60
|
+
.
|
61
|
+
├── app
|
62
|
+
│ ├── handlers # Handlers directory.
|
63
|
+
| | └── .
|
64
|
+
│ ├── models # Activerecord models directory.
|
65
|
+
| | └── .
|
66
|
+
│ └── services # Services directory.
|
67
|
+
| └── .
|
68
|
+
├── bin
|
69
|
+
| └── run # Run script.
|
70
|
+
├── config
|
71
|
+
│ ├── locales # I18n locales directory.
|
72
|
+
| | └── .
|
73
|
+
| ├── application.rb # Application configuration.
|
74
|
+
| ├── boot.rb # Gems load.
|
75
|
+
| └── database.yml # Database comfiguration.
|
76
|
+
├── db
|
77
|
+
| └── migrate # Database migrations.
|
78
|
+
| └── .
|
79
|
+
├── log # Logs
|
80
|
+
| └── .
|
81
|
+
├── .env # Dotenv environment variables.
|
82
|
+
├── .standalone_migrations # Migrations configuration.
|
83
|
+
├── Gemfile # Gems dependencies.
|
84
|
+
├── Rakefile # Rake tasks.
|
85
|
+
└── README.md
|
86
|
+
```
|
57
87
|
## Additional info
|
58
88
|
|
59
89
|
More information about bot wrapper you can find [here](https://github.com/atipugin/telegram-bot-ruby).
|
data/lib/bionic/version.rb
CHANGED