-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathorphic.gemspec
More file actions
29 lines (28 loc) · 1.38 KB
/
orphic.gemspec
File metadata and controls
29 lines (28 loc) · 1.38 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
# coding: utf-8
lib = File.expand_path("../lib/", __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require "thor/version"
Stripe.set_app_info('Orphic', version: '0.1.7', url: 'https://orphic.enterprises')
Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", ">= 1.0", "< 3"
spec.authors = ["Kyle OBrien"]
spec.description = "Orphic is a toolkit for building boilerplate interfaces invoking interaction"
spec.email = "cli@orphic.enterprises"
spec.executables = %w(orphic)
spec.files = %w(.document orphic.gemspec) + Dir["*.md", "bin/*", "lib/**/*.rb"]
spec.homepage = "https://orphic.enterprises/orphic-cli"
spec.licenses = %w(MIT)
spec.name = "orphic"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/orphic-inc/ruby-orphic-cli/issues",
"changlog_uri" => "https://github.com/orphic-inc/ruby-orphic-cli/blob/main/CHANGELOG.md",
"documentation_uri" => "https://github.com/orphic-inc/ruby-orphic-cli/blob/main/README.md",
"source_code_uri" => "https://github.com/orphic-inc/ruby-orphic-cli/tree/v#{Orphic::VERSION}",
"wiki_uri" => "https://github.com/orphic-inc/ruby-orphic-cli/wiki"
}
spec.require_paths = %w(lib)
spec.required_ruby_version = ">= 2.0.0"
spec.required_rubygems_version = ">= 1.3.5"
spec.summary = spec.description
spec.version = Orphic::VERSION
end