Sha256: 907dd3b8331769805dd2e95f620ab37f2f1cd11b5e7d6d5964a435bb906bd7b7
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'nacelle/version' Gem::Specification.new do |spec| spec.name = "nacelle" spec.version = Nacelle::VERSION spec.authors = ["Micah Geisel"] spec.email = ["micah@botandrose.com"] spec.summary = "Embed cells in the markup of your CMS." spec.description = "Embed cells in the markup of your CMS." spec.homepage = "https://github.com/botandrose/nacelle" spec.license = "MIT" 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_development_dependency "bundler" spec.add_development_dependency "appraisal" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "capybara" spec.add_development_dependency "byebug" spec.add_dependency "rails" spec.add_dependency "sprockets-rails" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nacelle-0.6.0 | nacelle.gemspec |