Sha256: ccca3706a05066b93ee338a2cfd7599d7a06c7600b27976d3407d5850e7ae3e9
Contents?: true
Size: 1.34 KB
Versions: 6
Compression:
Stored size: 1.34 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'frankly/version' Gem::Specification.new do |spec| spec.name = "frankly" spec.version = Frankly::VERSION spec.authors = ["Ken Rettberg"] spec.email = %q{kenrettberg@gmail.com} spec.description = %q{Setup a sinatra skeleton like a boss!} spec.summary = %q{An opinionated sinatra skeleton with Rake tasks, rspec, postgres, and more!} spec.files = `git ls-files`.split($/) spec.homepage = %q{https://github.com/kenrett/frankly} spec.rubygems_version = %q{1.6.2} spec.license = "MIT" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(spec)/}) spec.require_paths = ["lib"] spec.post_install_message = <<-PIC . .---------.'---. '. : .' '. .::: .' The Chairman '.'::'.' of the Board '||' has arrived. || || || ---====--- PIC spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_development_dependency "pry-byebug", "~> 3.4" spec.add_runtime_dependency 'thor', '~> 0.19.1' end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
frankly-0.1.6 | frankly.gemspec |
frankly-0.1.5 | frankly.gemspec |
frankly-0.1.4 | frankly.gemspec |
frankly-0.1.3 | frankly.gemspec |
frankly-0.1.2 | frankly.gemspec |
frankly-0.1.1 | frankly.gemspec |