RBotKit 0.1.30 → 0.1.31

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
  SHA1:
3
- metadata.gz: 73762fed270f8fc2b87cb9023afbd46446d2adfb
4
- data.tar.gz: 1060483b5ab42e01309e51ea2e7af02209cc63f9
3
+ metadata.gz: adb0fac54ff9206b29e32c8dbc1c55d344ea8f64
4
+ data.tar.gz: fd5510bfd74dd83ea70ecc58d0eb7b2ee49b2b8b
5
5
  SHA512:
6
- metadata.gz: da8a09a1c74c01692f1aad5aa6f5c4ff2d4907c6e51a101cf803e098939cb1939df1c8d2bfb5030dcf7c72166f92a0bf6581d2e9400f464fa5248421fac76123
7
- data.tar.gz: a22f8466fe2f2c236dcc061e8da943460a54a89494afbe85955fb26811b6085cd6da46d7c36fec857bda9ae4ab16d7c3798684eca8e3b873501f205b44637bfc
6
+ metadata.gz: 76ab8072ca011c36e79a920bc149186f483e2a936c0797c7e69bef34afacfbafd21f62b817a885e6e65851e07957839eb62d7cec091a6faad39b9c8aa3de9b2f
7
+ data.tar.gz: 6f368852d0d9da884adf8dcb4c3178d0c5df3e4b448f80bee54b1e7b45a15cf18ae3a5d54d0711c5707283359c1430951e58e023bfd152359c6e8931531dbfe5
Binary file
data/RBotKit.gemspec CHANGED
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "RBotKit"
8
8
  spec.version = RBotKit::VERSION
9
9
  spec.authors = ["alexej"]
10
- spec.email = ["red.belial@gmail.com"]
10
+ spec.email = ["a-nenastev@mail.ru"]
11
11
 
12
12
  spec.summary = "Bot Kit for telegramm"
13
13
  spec.description = "Bot Kit for telegramm"
14
- spec.homepage = "http://google.com"
14
+ spec.homepage = "https://github.com/alexejn/RBotKit.git"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
data/lib/RBotKit.rb CHANGED
@@ -79,8 +79,7 @@ module RBotKit
79
79
 
80
80
  @state_provider.update_last_processed_req_id(req.chat_id, req.id)
81
81
 
82
- state = @state_provider.get_current_state(req.chat_id)
83
- p "STATE = #{state}"
82
+ state = @state_provider.get_current_state(req.chat_id)
84
83
  cmdCase = nil
85
84
 
86
85
  arrs = req.class == RequestCallback ? @inlinecases : @caces
@@ -101,8 +100,7 @@ module RBotKit
101
100
  break if cmdCase != nil
102
101
  end
103
102
 
104
- return if cmdCase == nil
105
- p "CMD = #{cmdCase} #{@@cmd_classprefix}#{cmdCase.cmdclass}"
103
+ return if cmdCase == nil
106
104
  begin
107
105
 
108
106
  cmdHandel = Object::const_get("#{@@cmd_classprefix}#{cmdCase.cmdclass}").new
@@ -1,3 +1,3 @@
1
1
  module RBotKit
2
- VERSION = "0.1.30"
2
+ VERSION = "0.1.31"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: RBotKit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.30
4
+ version: 0.1.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - alexej
@@ -82,7 +82,7 @@ dependencies:
82
82
  version: '0'
83
83
  description: Bot Kit for telegramm
84
84
  email:
85
- - red.belial@gmail.com
85
+ - a-nenastev@mail.ru
86
86
  executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
@@ -93,6 +93,7 @@ files:
93
93
  - ".travis.yml"
94
94
  - Gemfile
95
95
  - LICENSE.txt
96
+ - RBotKit-0.1.30.gem
96
97
  - RBotKit.gemspec
97
98
  - RBotKit/.gitignore
98
99
  - RBotKit/.rspec
@@ -120,7 +121,7 @@ files:
120
121
  - lib/RBotKit/state_provider.rb
121
122
  - lib/RBotKit/t_responce.rb
122
123
  - lib/RBotKit/version.rb
123
- homepage: http://google.com
124
+ homepage: https://github.com/alexejn/RBotKit.git
124
125
  licenses:
125
126
  - MIT
126
127
  metadata: {}