1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'string-direction/version'
Gem::Specification.new do |s|
s.name = 'string-direction'
s.version = StringDirection::VERSION
s.summary = 'Automatic detection of text direction (ltr, rtl or bidi) for strings'
s.description = 'https://github.com/waiting-for-dev/string-direction/'
s.license = 'GPL3'
s.homepage = 'https://github.com/waiting-for-dev/string-direction/'
s.authors = ['Marc Busqué']
s.email = 'marc@lamarciana.com'
s.files = `git ls-files`.split("\n")
s.add_development_dependency 'bundler', '~> 1.10'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
s.add_development_dependency 'rspec', '~> 3.3'
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'pry-byebug', '~> 3.2'
end
|