-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtelegram.gemspec
More file actions
36 lines (31 loc) · 1.29 KB
/
telegram.gemspec
File metadata and controls
36 lines (31 loc) · 1.29 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'telegram/version'
Gem::Specification.new do |spec|
spec.name = "telegram"
spec.version = Telegram::VERSION
spec.authors = ["tatums"]
spec.email = ["tatum@ashlandstudios.com"]
spec.summary = %q{Tool for sharing messages with your dev team.}
spec.description = %q{Tool for sharing messages with your dev team.}
spec.homepage = ""
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency("virtus", "~> 1.0")
spec.add_dependency("thor", "~> 0.18")
spec.add_dependency("highline", "~> 1.6")
spec.add_dependency("colorize", "~> 0.6")
spec.add_dependency("tzinfo", "> 0.3.0")
spec.add_runtime_dependency('pry')
spec.add_development_dependency "bundler", "~> 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
#spec.add_development_dependency "pry"
spec.add_development_dependency "hitch"
spec.add_development_dependency "rails"
spec.add_development_dependency "aruba"
end