bionic 0.0.2.rc2 → 0.0.2.rc3

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: df2167e5df07d09666f7aa6760ae4a1c4ec6e00c52e71b503baef15d0b3dc804
4
- data.tar.gz: 157dc1a63fb0af8b32c924199178b5f5e72ea5533484a7906b375618526bdf90
3
+ metadata.gz: 4dba1a14d3b42332506df25a3b4c9329d240d526a46d96af5403a0ecf11b9e82
4
+ data.tar.gz: 9c5925cc16ee4293a2c71e7d1f7ac605462ed7756bb50ac3e8273a775b9787c8
5
5
  SHA512:
6
- metadata.gz: 5a0d5cab2399bcc5e1613ec3929b60e87a8f1672a99a8a774c57f8c4813c083fd007aec7431ee057d46e6a67faded0a34059c3a8a3f7a2e77928f55fda851ab7
7
- data.tar.gz: 1b0f3aba2be6a1723132b072916122687570a9fb6bf1e8d6b24e0d754c1a81b2bf203c5819cc1d3b49f0c463ef764002ca3aa8cd75a30f4b73ffbb1044177aa7
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).
@@ -3,3 +3,4 @@
3
3
  source 'https://rubygems.org'
4
4
 
5
5
  gem 'bionic'
6
+ gem 'rake'
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require_relative '../config/application'
4
- require_relative '../config/boot'
5
4
 
6
5
  Bionic.run
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bionic
4
- VERSION = '0.0.2.rc2'
4
+ VERSION = '0.0.2.rc3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bionic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.rc2
4
+ version: 0.0.2.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taras Shpachenko