-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotepadqq_api.gemspec
More file actions
24 lines (22 loc) · 898 Bytes
/
notepadqq_api.gemspec
File metadata and controls
24 lines (22 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
s.name = 'notepadqq_api'
s.version = '0.1.5'
s.date = '2015-05-04'
s.summary = "Notepadqq API Layer"
s.description = "Notepadqq API Layer for extensions"
s.authors = ["Daniele Di Sarli"]
s.email = 'danieleds0@gmail.com'
s.files = ["lib/notepadqq_api.rb",
"lib/notepadqq_api/message_channel.rb",
"lib/notepadqq_api/message_interpreter.rb",
"lib/notepadqq_api/stubs.rb",
"test/test_message_interpreter.rb",
"test/test_stubs.rb",
]
s.homepage = 'https://rubygems.org/gems/notepadqq_api'
s.license = 'MIT'
s.add_runtime_dependency 'json', '~> 1.8'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'minitest', '~> 5.5'
s.required_ruby_version = '>= 2.0'
end