slatan 0.1.0

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.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +14 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +4 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +59 -0
  9. data/Rakefile +26 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +6 -0
  12. data/lib/slatan/affiliation/channels.rb +36 -0
  13. data/lib/slatan/affiliation/self.rb +17 -0
  14. data/lib/slatan/affiliation/sub_teams.rb +17 -0
  15. data/lib/slatan/affiliation/team.rb +17 -0
  16. data/lib/slatan/affiliation/users.rb +54 -0
  17. data/lib/slatan/affiliation.rb +15 -0
  18. data/lib/slatan/buttocks.rb +75 -0
  19. data/lib/slatan/ear.rb +27 -0
  20. data/lib/slatan/heart.rb +88 -0
  21. data/lib/slatan/mouth/api.rb +19 -0
  22. data/lib/slatan/mouth/auth.rb +19 -0
  23. data/lib/slatan/mouth/channels.rb +57 -0
  24. data/lib/slatan/mouth/chat.rb +39 -0
  25. data/lib/slatan/mouth/emoji.rb +19 -0
  26. data/lib/slatan/mouth/ext/chat.rb +68 -0
  27. data/lib/slatan/mouth/ext.rb +10 -0
  28. data/lib/slatan/mouth/files.rb +19 -0
  29. data/lib/slatan/mouth/groups.rb +71 -0
  30. data/lib/slatan/mouth/im.rb +48 -0
  31. data/lib/slatan/mouth/mpim.rb +42 -0
  32. data/lib/slatan/mouth/pins.rb +28 -0
  33. data/lib/slatan/mouth/reactions.rb +38 -0
  34. data/lib/slatan/mouth/rtm.rb +19 -0
  35. data/lib/slatan/mouth/stars.rb +24 -0
  36. data/lib/slatan/mouth/team.rb +19 -0
  37. data/lib/slatan/mouth/users.rb +40 -0
  38. data/lib/slatan/mouth.rb +73 -0
  39. data/lib/slatan/spirit.rb +34 -0
  40. data/lib/slatan/template/concern.rb.erb +14 -0
  41. data/lib/slatan/utils/integer_ex.rb +17 -0
  42. data/lib/slatan/utils/string_ex.rb +11 -0
  43. data/lib/slatan/version.rb +3 -0
  44. data/lib/slatan.rb +44 -0
  45. data/slatan.gemspec +29 -0
  46. metadata +172 -0
metadata ADDED
@@ -0,0 +1,172 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: slatan
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - kudohamu
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: eventmachine
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faye-websocket
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: activesupport
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.10'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.10'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Gem to create bot for Slack easily and flexibly.
98
+ email:
99
+ - kudohamu91086[a]gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - bin/console
113
+ - bin/setup
114
+ - lib/slatan.rb
115
+ - lib/slatan/affiliation.rb
116
+ - lib/slatan/affiliation/channels.rb
117
+ - lib/slatan/affiliation/self.rb
118
+ - lib/slatan/affiliation/sub_teams.rb
119
+ - lib/slatan/affiliation/team.rb
120
+ - lib/slatan/affiliation/users.rb
121
+ - lib/slatan/buttocks.rb
122
+ - lib/slatan/ear.rb
123
+ - lib/slatan/heart.rb
124
+ - lib/slatan/mouth.rb
125
+ - lib/slatan/mouth/api.rb
126
+ - lib/slatan/mouth/auth.rb
127
+ - lib/slatan/mouth/channels.rb
128
+ - lib/slatan/mouth/chat.rb
129
+ - lib/slatan/mouth/emoji.rb
130
+ - lib/slatan/mouth/ext.rb
131
+ - lib/slatan/mouth/ext/chat.rb
132
+ - lib/slatan/mouth/files.rb
133
+ - lib/slatan/mouth/groups.rb
134
+ - lib/slatan/mouth/im.rb
135
+ - lib/slatan/mouth/mpim.rb
136
+ - lib/slatan/mouth/pins.rb
137
+ - lib/slatan/mouth/reactions.rb
138
+ - lib/slatan/mouth/rtm.rb
139
+ - lib/slatan/mouth/stars.rb
140
+ - lib/slatan/mouth/team.rb
141
+ - lib/slatan/mouth/users.rb
142
+ - lib/slatan/spirit.rb
143
+ - lib/slatan/template/concern.rb.erb
144
+ - lib/slatan/utils/integer_ex.rb
145
+ - lib/slatan/utils/string_ex.rb
146
+ - lib/slatan/version.rb
147
+ - slatan.gemspec
148
+ homepage: https://github.com/kudohamu/slatan
149
+ licenses:
150
+ - MIT
151
+ metadata: {}
152
+ post_install_message:
153
+ rdoc_options: []
154
+ require_paths:
155
+ - lib
156
+ required_ruby_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ required_rubygems_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ requirements: []
167
+ rubyforge_project:
168
+ rubygems_version: 2.4.8
169
+ signing_key:
170
+ specification_version: 4
171
+ summary: bot module for Slack
172
+ test_files: []