-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsynvert-ruby.gemspec
More file actions
24 lines (20 loc) · 958 Bytes
/
synvert-ruby.gemspec
File metadata and controls
24 lines (20 loc) · 958 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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'synvert/version'
Gem::Specification.new do |spec|
spec.name = 'synvert'
spec.version = Synvert::VERSION
spec.authors = ['Richard Huang']
spec.email = ['flyerhzm@gmail.com']
spec.description = 'synvert is used to convert ruby code to better syntax.'
spec.summary = 'synvert = syntax + convert.'
spec.homepage = 'https://github.com/synvert-hq/synvert-ruby'
spec.license = 'MIT'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.post_install_message = 'Please run `synvert-ruby --sync` first to sync snippets remotely.'
spec.add_runtime_dependency 'synvert-core', '>= 2.0.2'
end