Sha256: 7bf024da94f1788895fff4f5d2b61f1f4c5124effed4514733354acd1a4a30de
Contents?: true
Size: 659 Bytes
Versions: 6
Compression:
Stored size: 659 Bytes
Contents
# -*- encoding: utf-8 -*- # frozen_string_literal: true $LOAD_PATH.unshift(File.expand_path('../lib', __FILE__)) require 'fake_ftp/version' Gem::Specification.new do |s| s.name = 'fake_ftp' s.version = FakeFtp::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Colin Shield', 'Eric Saxby'] s.email = ['sax+github@livinginthepast.org'] s.homepage = 'http://rubygems.org/gems/fake_ftp' s.summary = 'Creates a fake FTP server for use in testing' s.description = 'Testing FTP? Use this!' s.license = 'MIT' s.files = `git ls-files -z`.split("\0") s.test_files = `git ls-files -z -- spec/*`.split("\0") s.require_paths = %w[lib] end
Version data entries
6 entries across 6 versions & 2 rubygems