Sha256: ebaf95f5c8c682478640d1f51ba8910030e6c34a6806ddb8acf9c6258b393d54
Contents?: true
Size: 1.38 KB
Versions: 4
Compression:
Stored size: 1.38 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'blocks/version' Gem::Specification.new do |spec| spec.name = "blocks" spec.version = Blocks::VERSION spec.authors = ["Andrew Hunter"] spec.email = ["hunterae@gmail.com"] spec.summary = %q{Blocks gives you total control over how your blocks of code render.} spec.description = %q{Blocks gives you total control over how your blocks of code render.} spec.homepage = "https://github.com/hunterae/blocks" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "rails", ">= 3.0.0" spec.add_development_dependency "simplecov" if RUBY_VERSION >= "2.1" spec.add_development_dependency "memory_profiler" end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
blocks-4.0.1 | blocks.gemspec |
blocks-4.0.0 | blocks.gemspec |
blocks-4.0.0.rc2 | blocks.gemspec |
blocks-4.0.0.rc1 | blocks.gemspec |