Sha256: c70e37b079f477bf77210a33b0e3a8eff96c503e31a132eae2a2e8800f34cfd5

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'space2underscore/version'

Gem::Specification.new do |spec|
  spec.name          = 'space2underscore'
  spec.version       = Space2underscore::VERSION
  spec.authors       = ['sachin21']
  spec.email         = ['sachin21.developer@gmail.com']
  spec.description   = 'Change the space into underscore'
  spec.summary       = 'Change the space into underscore'
  spec.homepage      = 'https://github.com/sachin21/space2underscore'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($RS)
  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 = File.read('post_install_message.txt')

  spec.add_development_dependency 'bundler', '~> 1.3'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'pry'
  spec.add_development_dependency 'rubocop'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
space2underscore-0.5.1 space2underscore.gemspec
space2underscore-0.5.0 space2underscore.gemspec
space2underscore-0.4.3 space2underscore.gemspec
space2underscore-0.4.2 space2underscore.gemspec