mirror of
https://github.com/meineerde/rackstash.git
synced 2025-10-17 14:01:01 +00:00
All of these changes are either simple formatting changes or clarify existing meaning. None of these changes affects externally visible behavior.
15 lines
335 B
Ruby
15 lines
335 B
Ruby
# frozen_string_literal: true
|
|
#
|
|
# Copyright 2017 Holger Just
|
|
#
|
|
# This software may be modified and distributed under the terms
|
|
# of the MIT license. See the LICENSE.txt file for details.
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec name: 'rackstash'
|
|
|
|
group :test do
|
|
gem 'rack', ENV['RACK_VERSION'] ? "~> #{ENV['RACK_VERSION']}" : nil
|
|
end
|