bianchi 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a8d03b012d92b96f021d80a4ce43c668d75f7003978feb81b189cdcb71952be
4
- data.tar.gz: b1c13d1ead41b898177e6915f06d134a0a762fb367b95cadbbb688d031c4767a
3
+ metadata.gz: 9d0a4841767acc10455e325dee277cf81119914192754b2da010b99626850986
4
+ data.tar.gz: 544c49afaa014e0163d86730b5338ead295ddd1f02bf6364aaa480d4a1da38f2
5
5
  SHA512:
6
- metadata.gz: 5178fa0c0e7a8b65829b004d348b73dc74a0305789e03edbdb0af2fe9ac1236281dd31835052281791289b7a48912b918ec536969aa27de484d16a383a8edcf3
7
- data.tar.gz: 7b961616077c63d17997d26837b1207bfd3718f5abc27e34a4fdb15ebbea3ec0b7754c846d0cbc1e77ba2984f974bff259e7100716dcf50b1af12f8e2d34346c
6
+ metadata.gz: 993ad14fd38daaf4ee9cf0d55f2450111675195d778c92c4663edff75f8f657cbcb816837bb41ec3ad75b7256e0a6e800b051808c46a0224f3d54cfea16f22e7
7
+ data.tar.gz: 183c4fbd9c4113c4bf6fcc399e119f1e4f54f5a39b24a220dca9ce8c8fdec81195f0c802e002b36f2e2998b3fd1bfe8b0aa081ac3e88b30d823d5f78a2037e3e
data/README.md CHANGED
@@ -183,7 +183,7 @@ module USSD
183
183
  class Engine
184
184
  def self.start(params)
185
185
  Bianchi::USSD::Engine.start(params, provider: :africastalking) do
186
- menu :main, options
186
+ menu :main, initial: true
187
187
  menu :greetings
188
188
  menu :repeat
189
189
  end
data/bianchi.gemspec CHANGED
@@ -8,7 +8,10 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Dapilah Sydney"]
9
9
  spec.email = ["dapilah.sydney@gmail.com"]
10
10
 
11
- spec.summary = "Write a short summary, because RubyGems requires one."
11
+ spec.summary = <<~MSG
12
+ A DSL (Domain-Specific Language) and a minimalist framework in Ruby, tailored for USSD development.
13
+ MSG
14
+
12
15
  spec.homepage = "https://github.com/SydDaps/Bianchi"
13
16
  spec.license = "MIT"
14
17
  spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bianchi
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bianchi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dapilah Sydney
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-05 00:00:00.000000000 Z
11
+ date: 2024-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -134,5 +134,6 @@ requirements: []
134
134
  rubygems_version: 3.2.3
135
135
  signing_key:
136
136
  specification_version: 4
137
- summary: Write a short summary, because RubyGems requires one.
137
+ summary: A DSL (Domain-Specific Language) and a minimalist framework in Ruby, tailored
138
+ for USSD development.
138
139
  test_files: []