Sha256: 3054089a724fb7c288c9be4ae9408a8a4621ae0e022f9c7a0f32f3c258a820e1
Contents?: true
Size: 1.18 KB
Versions: 9
Compression:
Stored size: 1.18 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "labelled_form/version" Gem::Specification.new do |spec| spec.name = "labelled_form" spec.version = LabelledForm::VERSION spec.authors = ["Micah Geisel"] spec.email = ["micah@botandrose.com"] spec.summary = %q{Adds label option to Rails form helpers} spec.description = %q{Adds label option to Rails form helpers} spec.homepage = "https://github.com/botandrose/labelled_form" spec.license = "MIT" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "actionview" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
9 entries across 9 versions & 1 rubygems