File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
- source 'https://rails-assets.org'
3
2
4
3
# Specify your gem's dependencies in best_in_place.gemspec
5
4
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
9
9
gem 'rdiscount'
10
10
gem 'rspec-rails'
11
11
gem 'nokogiri'
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ The editor works by PUTting the updated value to the server and GETting the upda
19
19
Installing * best_in_place* is very easy and straight-forward.
20
20
Just begin including the gem in your Gemfile:
21
21
22
- gem 'best_in_place', '~> 3.0.1 '
22
+ gem 'best_in_place', '~> 4.0 '
23
23
24
24
After that, specify the use of the jquery and best in place
25
25
javascripts in your application.js, and optionally specify jquery-ui if
Original file line number Diff line number Diff line change 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'
4
2
5
3
Gem ::Specification . new do |s |
6
4
s . name = "best_in_place"
7
5
s . version = BestInPlace ::VERSION
8
6
s . platform = Gem ::Platform ::RUBY
9
7
s . authors = [ "Bernat Farrero" ]
10
8
s . email = [ "bernat@itnig.net" ]
11
- s . homepage = "http ://github.com/bernat/best_in_place"
9
+ s . homepage = "https ://github.com/bernat/best_in_place"
12
10
s . summary = <<SUM
13
11
It makes any field in place editable by clicking on it, it works for inputs,
14
12
textareas, select dropdowns and checkboxes
Original file line number Diff line number Diff line change 1
1
module BestInPlace
2
- VERSION = '3.1.1 '
2
+ VERSION = '4.0.0 '
3
3
end
You can’t perform that action at this time.
0 commit comments