-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgurzu_interview.gemspec
More file actions
21 lines (21 loc) · 1.04 KB
/
gurzu_interview.gemspec
File metadata and controls
21 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = 'gurzu_interview'
s.version = '0.1.3'
s.date = '2015-07-15'
s.summary = "Command line utility for remote interview"
s.description = "Command line utility for remote interview at Jyaasa Technologies"
s.authors = ["Kapil Raj Nakhwa (@xecutioner303)"]
s.email = 'kapilnakhwa@gmail.com'
s.files = ["bin/interview", "data/questions.yaml", "lib/answer_formator.rb", "lib/interview.rb", "lib/interview_cli.rb", "lib/question.rb", "lib/question_set.rb","lib/user.rb", "lib/utils.rb"]
s.homepage =
'http://rubygems.org/gems/jyaasa_interviewer'
s.license = 'MIT'
s.executables << 'interview'
s.add_runtime_dependency 'thor', '~> 0.19.1'
s.add_runtime_dependency 'highline', '~> 2.1'
s.add_runtime_dependency 'colorize', '~> 0.7.7'
s.add_runtime_dependency 'rest-client', '~> 2.1'
s.post_install_message = "\e[31mType 'interview start' to start your Interview \e[0m"
s.required_ruby_version = '>= 3.3.0'
s.add_dependency 'railties', '~> 7.1'
end