Skip to content

Commit 3203d05

Browse files
committed
feat: release version 4.0.0
Release-as: 4.0.0
1 parent f494b4f commit 3203d05

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

Gemfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
source 'https://rubygems.org'
2-
source 'https://rails-assets.org'
32

43
# Specify your gem's dependencies in best_in_place.gemspec
54
gemspec
6-
7-
gem 'rails-assets-jquery', '1.11.1'
8-
gem 'rails-assets-jquery-ui', '1.10.4'
5+
source 'https://rails-assets.org' do
6+
gem 'rails-assets-jquery', '1.11.1'
7+
gem 'rails-assets-jquery-ui', '1.10.4'
8+
end
99
gem 'rdiscount'
1010
gem 'rspec-rails'
1111
gem 'nokogiri'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The editor works by PUTting the updated value to the server and GETting the upda
1919
Installing *best_in_place* is very easy and straight-forward.
2020
Just begin including the gem in your Gemfile:
2121

22-
gem 'best_in_place', '~> 3.0.1'
22+
gem 'best_in_place', '~> 4.0'
2323

2424
After that, specify the use of the jquery and best in place
2525
javascripts in your application.js, and optionally specify jquery-ui if

best_in_place.gemspec

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
# -*- encoding: utf-8 -*-
2-
$:.push File.expand_path("../lib", __FILE__)
3-
require 'best_in_place/version'
1+
require_relative 'lib/best_in_place/version'
42

53
Gem::Specification.new do |s|
64
s.name = "best_in_place"
75
s.version = BestInPlace::VERSION
86
s.platform = Gem::Platform::RUBY
97
s.authors = ["Bernat Farrero"]
108
s.email = ["[email protected]"]
11-
s.homepage = "http://github.com/bernat/best_in_place"
9+
s.homepage = "https://github.com/bernat/best_in_place"
1210
s.summary = <<SUM
1311
It makes any field in place editable by clicking on it, it works for inputs,
1412
textareas, select dropdowns and checkboxes

lib/best_in_place/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module BestInPlace
2-
VERSION = '3.1.1'
2+
VERSION = '4.0.0'
33
end

0 commit comments

Comments
 (0)