Skip to content

Commit

Permalink
feat: release version 4.0.0
Browse files Browse the repository at this point in the history
Release-as: 4.0.0
  • Loading branch information
seuros committed Aug 15, 2024
1 parent f494b4f commit 3203d05
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
source 'https://rubygems.org'
source 'https://rails-assets.org'

# Specify your gem's dependencies in best_in_place.gemspec
gemspec

gem 'rails-assets-jquery', '1.11.1'
gem 'rails-assets-jquery-ui', '1.10.4'
source 'https://rails-assets.org' do
gem 'rails-assets-jquery', '1.11.1'
gem 'rails-assets-jquery-ui', '1.10.4'
end
gem 'rdiscount'
gem 'rspec-rails'
gem 'nokogiri'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The editor works by PUTting the updated value to the server and GETting the upda
Installing *best_in_place* is very easy and straight-forward.
Just begin including the gem in your Gemfile:

gem 'best_in_place', '~> 3.0.1'
gem 'best_in_place', '~> 4.0'

After that, specify the use of the jquery and best in place
javascripts in your application.js, and optionally specify jquery-ui if
Expand Down
6 changes: 2 additions & 4 deletions best_in_place.gemspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'best_in_place/version'
require_relative 'lib/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.homepage = "https://github.com/bernat/best_in_place"
s.summary = <<SUM
It makes any field in place editable by clicking on it, it works for inputs,
textareas, select dropdowns and checkboxes
Expand Down
2 changes: 1 addition & 1 deletion lib/best_in_place/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BestInPlace
VERSION = '3.1.1'
VERSION = '4.0.0'
end

0 comments on commit 3203d05

Please sign in to comment.