restbox 0.0.1
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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +74 -0
- data/Rakefile +53 -0
- data/lib/restbox.rb +0 -0
- data/test/helper.rb +10 -0
- data/test/test_restbox.rb +7 -0
- metadata +73 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2009 Richard Millan
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
= Restbox
|
|
2
|
+
|
|
3
|
+
== Prerequisites
|
|
4
|
+
JQuery 1.3.2
|
|
5
|
+
|
|
6
|
+
== Install
|
|
7
|
+
|
|
8
|
+
To install as a Rails plugin, run this command.
|
|
9
|
+
|
|
10
|
+
script/plugin install http://github.com/richardiux/restbox.git
|
|
11
|
+
|
|
12
|
+
== Setup
|
|
13
|
+
|
|
14
|
+
in your layout after including jQuery:
|
|
15
|
+
|
|
16
|
+
<%= javascript_include_tag 'restbox' %>
|
|
17
|
+
<%= stylesheet_link_tag 'restbox' %>
|
|
18
|
+
|
|
19
|
+
== Example
|
|
20
|
+
|
|
21
|
+
=== In your view
|
|
22
|
+
|
|
23
|
+
link_to "edit", order_path(@order), :class => "restbox"
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
To put text in the restbox:
|
|
27
|
+
<%= restbox({:content => "some text"})%>
|
|
28
|
+
|
|
29
|
+
To put a partial inside the restbox:
|
|
30
|
+
<%= restbox(:content => render(:partial => 'orders')) %>
|
|
31
|
+
|
|
32
|
+
=== With javascript
|
|
33
|
+
|
|
34
|
+
To put content in the restbox
|
|
35
|
+
$.restbox({content: "some text"})
|
|
36
|
+
|
|
37
|
+
To manually display loading restbox
|
|
38
|
+
$.restbox({})
|
|
39
|
+
|
|
40
|
+
== Upgrading
|
|
41
|
+
=== Reinstall the plugin
|
|
42
|
+
script/plugin install http://github.com/richardiux/restbox.git -f
|
|
43
|
+
|
|
44
|
+
=== Regenerate JS and CSS
|
|
45
|
+
cd vendor/plugins/restbox/; ruby install.rb
|
|
46
|
+
|
|
47
|
+
== Bug Reports
|
|
48
|
+
|
|
49
|
+
If you have found a bug to report or a feature to request, please add it to the GitHub issue tracker if it is not there already.
|
|
50
|
+
|
|
51
|
+
http://github.com/richardiux/restbox/issues/
|
|
52
|
+
|
|
53
|
+
== Development
|
|
54
|
+
|
|
55
|
+
This project can be found on github at the following URL.
|
|
56
|
+
|
|
57
|
+
http://github.com/richardiux/restbox
|
|
58
|
+
|
|
59
|
+
Description goes here.
|
|
60
|
+
|
|
61
|
+
== Note on Patches/Pull Requests
|
|
62
|
+
|
|
63
|
+
* Fork the project.
|
|
64
|
+
* Make your feature addition or bug fix.
|
|
65
|
+
* Add tests for it. This is important so I don't break it in a
|
|
66
|
+
future version unintentionally.
|
|
67
|
+
* Commit, do not mess with rakefile, version, or history.
|
|
68
|
+
(if you want to have your own version, that is fine but
|
|
69
|
+
bump version in a commit by itself I can ignore when I pull)
|
|
70
|
+
* Send me a pull request. Bonus points for topic branches.
|
|
71
|
+
|
|
72
|
+
== Copyright
|
|
73
|
+
|
|
74
|
+
Copyright (c) 2009 Richard Millan. See LICENSE for details.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
require 'rubygems'
|
|
2
|
+
require 'rake'
|
|
3
|
+
|
|
4
|
+
begin
|
|
5
|
+
require 'jeweler'
|
|
6
|
+
Jeweler::Tasks.new do |gem|
|
|
7
|
+
gem.name = "restbox"
|
|
8
|
+
gem.summary = "Simple restful ajax overlay to work with jQuery and Rails"
|
|
9
|
+
gem.description = "Simple restful ajax overlay to work with jQuery and Rails"
|
|
10
|
+
gem.email = "richardiux@gmail.com"
|
|
11
|
+
gem.homepage = "http://github.com/richardiux/restbox"
|
|
12
|
+
gem.authors = ["Richard Millan"]
|
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
|
+
end
|
|
16
|
+
Jeweler::GemcutterTasks.new
|
|
17
|
+
rescue LoadError
|
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
require 'rake/testtask'
|
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
|
23
|
+
test.libs << 'lib' << 'test'
|
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
|
25
|
+
test.verbose = true
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
begin
|
|
29
|
+
require 'rcov/rcovtask'
|
|
30
|
+
Rcov::RcovTask.new do |test|
|
|
31
|
+
test.libs << 'test'
|
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
|
33
|
+
test.verbose = true
|
|
34
|
+
end
|
|
35
|
+
rescue LoadError
|
|
36
|
+
task :rcov do
|
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
task :test => :check_dependencies
|
|
42
|
+
|
|
43
|
+
task :default => :test
|
|
44
|
+
|
|
45
|
+
require 'rake/rdoctask'
|
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
48
|
+
|
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
50
|
+
rdoc.title = "restbox #{version}"
|
|
51
|
+
rdoc.rdoc_files.include('README*')
|
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
53
|
+
end
|
data/lib/restbox.rb
ADDED
|
File without changes
|
data/test/helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: restbox
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Richard Millan
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-11-03 00:00:00 -08:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: thoughtbot-shoulda
|
|
17
|
+
type: :development
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
25
|
+
description: Simple restful ajax overlay to work with jQuery and Rails
|
|
26
|
+
email: richardiux@gmail.com
|
|
27
|
+
executables: []
|
|
28
|
+
|
|
29
|
+
extensions: []
|
|
30
|
+
|
|
31
|
+
extra_rdoc_files:
|
|
32
|
+
- LICENSE
|
|
33
|
+
- README.rdoc
|
|
34
|
+
files:
|
|
35
|
+
- .document
|
|
36
|
+
- .gitignore
|
|
37
|
+
- LICENSE
|
|
38
|
+
- README.rdoc
|
|
39
|
+
- Rakefile
|
|
40
|
+
- lib/restbox.rb
|
|
41
|
+
- test/helper.rb
|
|
42
|
+
- test/test_restbox.rb
|
|
43
|
+
has_rdoc: true
|
|
44
|
+
homepage: http://github.com/richardiux/restbox
|
|
45
|
+
licenses: []
|
|
46
|
+
|
|
47
|
+
post_install_message:
|
|
48
|
+
rdoc_options:
|
|
49
|
+
- --charset=UTF-8
|
|
50
|
+
require_paths:
|
|
51
|
+
- lib
|
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: "0"
|
|
57
|
+
version:
|
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: "0"
|
|
63
|
+
version:
|
|
64
|
+
requirements: []
|
|
65
|
+
|
|
66
|
+
rubyforge_project:
|
|
67
|
+
rubygems_version: 1.3.5
|
|
68
|
+
signing_key:
|
|
69
|
+
specification_version: 3
|
|
70
|
+
summary: Simple restful ajax overlay to work with jQuery and Rails
|
|
71
|
+
test_files:
|
|
72
|
+
- test/helper.rb
|
|
73
|
+
- test/test_restbox.rb
|