-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshift_ciphers.gemspec
More file actions
26 lines (20 loc) · 942 Bytes
/
shift_ciphers.gemspec
File metadata and controls
26 lines (20 loc) · 942 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
25
26
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'shift_ciphers/version'
Gem::Specification.new do |s|
s.name = "shift_ciphers"
s.version = ShiftCiphers::VERSION
s.authors = ["Tomasz Więch"]
s.email = ["tewu.dev@gmail.com"]
s.summary = "Implementation of Caesar and Vigenere ciphers"
s.description = "Implementation of Caesar and Vigenere ciphers"
s.homepage = "https://github.com/TeWu/shift-ciphers"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(doc|test|spec|features|bin)/|Rakefile|Gemfile*|CHANGELOG}) || f.start_with?('.') }
s.require_paths = ["lib"]
s.required_ruby_version = ">= 2.3.0"
s.add_development_dependency "bundler", "~> 2.1"
s.add_development_dependency "pry", "~> 0.13"
s.add_development_dependency "rspec", "~> 3.9"
end