-
Notifications
You must be signed in to change notification settings - Fork 1
/
win-ffi.gemspec
33 lines (28 loc) · 1.22 KB
/
win-ffi.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
require_relative 'lib/win-ffi/core/version'
Gem::Specification.new do |gem|
gem.name = 'win-ffi-core'
gem.version = WinFFI::VERSION
gem.summary = 'FFI definitions for Windows API'
gem.description = 'FFI definitions for Windows API.'
gem.license = 'MIT'
gem.authors = %w'P3t3rU5'
gem.email = %w'[email protected]'
gem.homepage = 'https://github.com/P3t3rU5/win-ffi-core'
gem.require_paths = %w'lib'
gem.files = Dir['{lib/**/*.rb,*.md}']
gem.add_runtime_dependency 'ffi', '~> 1'
gem.add_dependency 'ffi-additions'
gem.add_dependency 'facets', '~> 3'
gem.add_development_dependency 'rspec', '~> 3'
gem.post_install_message = <<-eos
+----------------------------------------------------------------------------+
Thanks for choosing WinFFI.
==========================================================================
#{WinFFI::VERSION} Changes:
- Refactored Directory Structure
==========================================================================
If you find any bugs, please report them on
https://github.com/P3t3rU5/win-ffi-core/issues
+----------------------------------------------------------------------------+
eos
end