Sha256: a1a8f7f7998110ed11446407e43e6007e19e9ef6ef96f82a6dc7eafc03b19865

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "best_in_place/version"

Gem::Specification.new do |s|
  s.name        = "best_in_place"
  s.version     = BestInPlace::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Bernat Farrero"]
  s.email       = ["bernat@itnig.net"]
  s.homepage    = "http://github.com/bernat/best_in_place"
  s.summary     = %q{It makes any field in place editable by clicking on it, it works for inputs, textareas, select dropdowns and checkboxes}
  s.description = %q{BestInPlace is a jQuery script and a Rails 3 helper that provide the method best_in_place to display any object field easily editable for the user by just clicking on it. It supports input data, text data, boolean data and custom dropdown data. It works with RESTful controllers.}

  s.rubyforge_project = "best_in_place"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_dependency "rails", "~> 3.1"
  s.add_dependency "jquery-rails"

  s.add_development_dependency "rspec-rails", "~> 2.8.0"
  s.add_development_dependency "nokogiri"
  s.add_development_dependency "capybara", "~> 1.1.2"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
best_in_place-2.1.0 best_in_place.gemspec
best_in_place-2.0.3 best_in_place.gemspec
best_in_place-2.0.2 best_in_place.gemspec
best_in_place-2.0.1 best_in_place.gemspec
best_in_place-2.0.0 best_in_place.gemspec
best_in_place-1.1.3 best_in_place.gemspec