Sha256: 67fdac3b85fd3cf8f5197dc27497fd13f778e33269ad8cec3d307c1ceaaa1234

Contents?: true

Size: 862 Bytes

Versions: 1

Compression:

Stored size: 862 Bytes

Contents

# encoding: UTF-8
# frozen_string_literal: true

require File.expand_path('../lib/autostrip/version', __FILE__)

Gem::Specification.new do |s|
  s.name            = 'autostrip'
  s.version         = Autostrip::VERSION
  s.authors         = ['Yaroslav Konoplov']
  s.email           = ['eahome00@gmail.com']
  s.summary         = 'Automatically strip leading and trailing whitespace'
  s.description     = 'Automatically strip leading and trailing whitespace'
  s.homepage        = 'http://github.com/yivo/autostrip'
  s.license         = 'MIT'

  s.executables     = `git ls-files -z -- bin/*`.split("\x0").map{ |f| File.basename(f) }
  s.files           = `git ls-files -z`.split("\x0")
  s.test_files      = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
  s.require_paths   = ['lib']

  s.add_runtime_dependency 'activemodel', '>= 3.0', '< 6.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
autostrip-1.0.3 autostrip.gemspec