on_the_spot 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +15 -1
- data/VERSION +1 -1
- data/on_the_spot.gemspec +2 -2
- metadata +3 -3
data/README.markdown
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# on_the_spot
|
2
2
|
|
3
|
-
On-the-spot is a Rails3 compliant unobtrusive javascript in-place-editing plugin, using jEditable.
|
3
|
+
On-the-spot is a Rails3 compliant unobtrusive javascript in-place-editing plugin, using jEditable, and depends on jQuery.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -87,6 +87,20 @@ For the texts: if a text is not specified, the default is taken from the `on_the
|
|
87
87
|
|
88
88
|
There is an example rails3-project called [on_the_spot_tester](http://github.com/nathanvda/on_the_spot_tester)
|
89
89
|
|
90
|
+
## Prerequisites
|
91
|
+
|
92
|
+
As jEditable depends on jQuery, your rails3 project needs to use jQuery.
|
93
|
+
It will not work if you use Prototype instead, in your rails3 project.
|
94
|
+
I have written an article [here](http://www.dixis.com/?p=307) how to start a fresh rails3 project, using jQuery.
|
95
|
+
In short, you add the following to your `Gemfile`:
|
96
|
+
|
97
|
+
gem "jquery-rails"
|
98
|
+
|
99
|
+
and, after a `bundle install`, you run
|
100
|
+
|
101
|
+
rails g jquery:install
|
102
|
+
|
103
|
+
That will download and install all the necessary files for you.
|
90
104
|
|
91
105
|
## Note on Patches/Pull Requests
|
92
106
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/on_the_spot.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{on_the_spot}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Nathan Van der Auwera"]
|
12
|
-
s.date = %q{2010-11-
|
12
|
+
s.date = %q{2010-11-23}
|
13
13
|
s.description = %q{Unobtrusive in place editing, using jEditable; only works in Rails 3}
|
14
14
|
s.email = %q{nathan@dixis.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 5
|
9
|
+
version: 0.0.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Nathan Van der Auwera
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-11-
|
17
|
+
date: 2010-11-23 00:00:00 +01:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|