hobo-jquery 1.3.0pre2

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.
Files changed (37) hide show
  1. data/.gitmodules +3 -0
  2. data/LICENSE.txt +22 -0
  3. data/README.markdown +54 -0
  4. data/TODO.markdown +0 -0
  5. data/hobo-jquery.gemspec +9 -0
  6. data/jquery/javascripts/jquery-1.5.2.min.js +16 -0
  7. data/jquery/javascripts/jquery-ui-1.8.11.custom.min.js +783 -0
  8. data/jquery/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  9. data/jquery/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  10. data/jquery/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  11. data/jquery/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  12. data/jquery/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  13. data/jquery/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  14. data/jquery/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  15. data/jquery/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  16. data/jquery/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
  17. data/jquery/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  18. data/jquery/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
  19. data/jquery/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
  20. data/jquery/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  21. data/jquery/stylesheets/smoothness/jquery-ui-1.8.11.custom.css +573 -0
  22. data/lib/doc.dryml +75 -0
  23. data/lib/doc.rb +15 -0
  24. data/lib/doc_generator.dryml +79 -0
  25. data/lib/generators/hobo_jquery/install_generator.rb +23 -0
  26. data/lib/hobo-jquery.rb +6 -0
  27. data/lib/hobo-jquery/railtie.rb +9 -0
  28. data/lib/html2markdown.pl +7 -0
  29. data/lib/render.rake +39 -0
  30. data/lib/tasks/hobo-contrib.rake +2 -0
  31. data/public/javascripts/event.simulate.js +64 -0
  32. data/public/javascripts/hobo-jquery.js +663 -0
  33. data/public/stylesheets/hobo-jquery.css +16 -0
  34. data/rails/init.rb +0 -0
  35. data/taglibs/hobo-jquery.dryml +613 -0
  36. data/update-docs.sh +16 -0
  37. metadata +89 -0
@@ -0,0 +1,16 @@
1
+ #!/bin/sh
2
+
3
+ # make sure to do a git commit before running so you don't get bogus commit messages
4
+
5
+ set -e
6
+ set -x
7
+
8
+ cd lib
9
+ ruby doc.rb
10
+ cd ..
11
+ git checkout gh-pages
12
+ cp documentation/doc.html documentation.html
13
+ git add documentation.html
14
+ git commit -m "doc update"
15
+ git push origin gh-pages
16
+ git checkout master
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hobo-jquery
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: 5
5
+ version: 1.3.0pre2
6
+ platform: ruby
7
+ authors:
8
+ - Bryan Larsen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-01-05 00:00:00 Z
14
+ dependencies: []
15
+
16
+ description: JQuery support for Hobo
17
+ email: bryan@larsen.st
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - .gitmodules
26
+ - LICENSE.txt
27
+ - README.markdown
28
+ - TODO.markdown
29
+ - hobo-jquery.gemspec
30
+ - jquery/javascripts/jquery-1.5.2.min.js
31
+ - jquery/javascripts/jquery-ui-1.8.11.custom.min.js
32
+ - jquery/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
33
+ - jquery/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
34
+ - jquery/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
35
+ - jquery/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
36
+ - jquery/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png
37
+ - jquery/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
38
+ - jquery/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
39
+ - jquery/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
40
+ - jquery/stylesheets/smoothness/images/ui-icons_222222_256x240.png
41
+ - jquery/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png
42
+ - jquery/stylesheets/smoothness/images/ui-icons_454545_256x240.png
43
+ - jquery/stylesheets/smoothness/images/ui-icons_888888_256x240.png
44
+ - jquery/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png
45
+ - jquery/stylesheets/smoothness/jquery-ui-1.8.11.custom.css
46
+ - lib/doc.dryml
47
+ - lib/doc.rb
48
+ - lib/doc_generator.dryml
49
+ - lib/generators/hobo_jquery/install_generator.rb
50
+ - lib/hobo-jquery.rb
51
+ - lib/hobo-jquery/railtie.rb
52
+ - lib/html2markdown.pl
53
+ - lib/render.rake
54
+ - lib/tasks/hobo-contrib.rake
55
+ - public/javascripts/event.simulate.js
56
+ - public/javascripts/hobo-jquery.js
57
+ - public/stylesheets/hobo-jquery.css
58
+ - rails/init.rb
59
+ - taglibs/hobo-jquery.dryml
60
+ - update-docs.sh
61
+ homepage:
62
+ licenses: []
63
+
64
+ post_install_message:
65
+ rdoc_options: []
66
+
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: "0"
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ none: false
77
+ requirements:
78
+ - - ">"
79
+ - !ruby/object:Gem::Version
80
+ version: 1.3.1
81
+ requirements: []
82
+
83
+ rubyforge_project:
84
+ rubygems_version: 1.8.9
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: JQuery support for Hobo
88
+ test_files: []
89
+