forked from rudicode/code2rubylearning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode2rubylearning.gemspec
More file actions
20 lines (18 loc) · 935 Bytes
/
code2rubylearning.gemspec
File metadata and controls
20 lines (18 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'code2rubylearning/version'
Gem::Specification.new do |gem|
gem.name = "code2rubylearning"
gem.version = Code2rubylearning::VERSION
gem.authors = ["Rudi Luzar"]
gem.email = ["rudi@rudi.me"]
gem.description = "command line tool that formats, given source code files, making them ready for pasting to the rubylearning.org forum."
gem.summary = "command line tool that formats, given source code files, making them ready for pasting to the rubylearning.org forum."
gem.homepage = "https://github.com/rudicode/code2rubylearning"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_runtime_dependency "clippy", ["= 1.0.1"]
end