-
Notifications
You must be signed in to change notification settings - Fork 0
/
t_chatter.gemspec
44 lines (35 loc) · 1.38 KB
/
t_chatter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 't_chatter/version'
Gem::Specification.new do |spec|
spec.name = "t_chatter"
spec.version = TChatter::VERSION
spec.authors = ["Oreoluwa Akinniranye"]
spec.email = ["[email protected]"]
spec.summary = %q{Allows you to chat on your terminal|command line}
spec.homepage = "https://github.com/andela-oakinniranye/t_chatter"
spec.description = <<-EOS
TChatter allows you to chat with your friends on your
terminal.
You can extend it further though to chat with your
friends on Slack and other applications."
Visit TChatter's homepage to read more on the application.
EOS
spec.license = "MIT"
spec.files = Dir['lib/**/*.rb']
spec.bindir = "bin"
spec.executables += ['t_chatter', 'setup_t_chatter']
spec.require_paths = ["lib"]
spec.post_install_message = <<-EOS
Thanks for trying out my interesting gem.
To complete the installation, run `setup_t_chatter` to
create a .chatter.yml configuration file.
This allows you to use your own url and set defaults
for your version of TChatter
EOS
spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_dependency "faraday"
spec.add_dependency "json"
end