Sha256: 9509f259d29c9fe689165640fa73303505e1c38ddbca2e62478f17507d590935

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

# frozen_string_literal: true

$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'underlay/version'
require 'date'

Gem::Specification.new do |s|
  s.required_ruby_version = ">= #{Underlay::RUBY_VERSION}"
  s.authors = ['dvelp']
  s.date = Date.today.strftime('%Y-%m-%d')

  s.description = <<~HERE
    Underlay removes the monotony of your setup, so you can spend your time focusing above the value line.
  HERE

  s.email = 'engage@dvelp.co.uk'
  s.executables = ['underlay']
  s.extra_rdoc_files = %w[README.md LICENSE]
  s.files = `git ls-files`.split("\n")
  s.homepage = 'http://github.com/DVELP/underlay'
  s.license = 'MIT'
  s.name = 'underlay'
  s.rdoc_options = ['--charset=UTF-8']
  s.require_paths = ['lib']
  s.summary = "Generate a Rails app using DVELP's best practices."
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.version = Underlay::VERSION

  s.add_dependency 'bundler', '~> 1.3'
  s.add_dependency 'rails', Underlay::RAILS_VERSION

  s.add_development_dependency 'rspec', '~> 3.2'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
underlay-1.52.1 underlay.gemspec
underlay-1.50.1 underlay.gemspec