forked from larsch/ocra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocra.gemspec
22 lines (17 loc) · 908 Bytes
/
ocra.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require_relative "lib/ocra"
Gem::Specification.new do |s|
s.name = "ocra"
s.version = Ocra::VERSION
s.authors = ["Lars Christensen"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/larsch/ocra/"
s.summary = "OCRA (One-Click Ruby Application) builds Windows executables from Ruby source code"
s.description = "OCRA (One-Click Ruby Application) builds Windows executables from Ruby\nsource code. The executable is a self-extracting, self-running\nexecutable that contains the Ruby interpreter, your source code and\nany additionally needed ruby libraries or DLL."
s.licenses = ["MIT"]
s.files = ["History.txt", "Manifest.txt", "README.md", "bin/ocra"]
s.executables = ["ocra"]
s.add_development_dependency("minitest", "~> 5.14")
s.add_development_dependency("rdoc", ">= 4.0", "< 7")
s.add_development_dependency("hoe", "~> 3.22")
end