yeqs_jquery 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.
Files changed (40) hide show
  1. data/Gemfile +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +107 -0
  4. data/Rakefile +40 -0
  5. data/VERSION +1 -0
  6. data/app/helpers/highcharts_helper.rb +41 -0
  7. data/app/helpers/include_helper.rb +23 -0
  8. data/lib/generators/yeqs/jquery/USAGE +8 -0
  9. data/lib/generators/yeqs/jquery/jquery_generator.rb +17 -0
  10. data/lib/yeqs_jquery.rb +7 -0
  11. data/lib/yeqs_jquery/engine.rb +13 -0
  12. data/lib/yeqs_jquery/highchart.rb +110 -0
  13. data/public/components/jquery/jquery-1.4.2.min.js +154 -0
  14. data/public/components/jqueryhighcharts/graphics/skies.jpg +0 -0
  15. data/public/components/jqueryhighcharts/graphics/snow.png +0 -0
  16. data/public/components/jqueryhighcharts/graphics/sun.png +0 -0
  17. data/public/components/jqueryhighcharts/js/highcharts.js +132 -0
  18. data/public/components/jqueryhighcharts/js/highcharts.src.js +8585 -0
  19. data/public/components/jqueryhighcharts/js/modules/exporting.js +20 -0
  20. data/public/components/jqueryhighcharts/js/modules/exporting.src.js +609 -0
  21. data/public/components/jqueryrails/rails.js +127 -0
  22. data/public/components/jquerytools/jquery.tools.min.js +114 -0
  23. data/public/components/jqueryui/css/smoothness/images/ui-anim_basic_16x16.gif +0 -0
  24. data/public/components/jqueryui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  25. data/public/components/jqueryui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  26. data/public/components/jqueryui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  27. data/public/components/jqueryui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  28. data/public/components/jqueryui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  29. data/public/components/jqueryui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  30. data/public/components/jqueryui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  31. data/public/components/jqueryui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  32. data/public/components/jqueryui/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
  33. data/public/components/jqueryui/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  34. data/public/components/jqueryui/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
  35. data/public/components/jqueryui/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
  36. data/public/components/jqueryui/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  37. data/public/components/jqueryui/css/smoothness/jquery-ui-1.8.2.custom.css +489 -0
  38. data/public/components/jqueryui/js/jquery-ui-1.8.2.custom.min.js +1012 -0
  39. data/yeqs_jquery.gemspec +22 -0
  40. metadata +123 -0
@@ -0,0 +1,22 @@
1
+ require 'bundler'
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "yeqs_jquery"
5
+ s.version = File.exists?('VERSION') ? File.read('VERSION') : ""
6
+ s.date = Date.today.to_s
7
+ s.platform = Gem::Platform::RUBY
8
+ s.author = "Tower He"
9
+ s.email = "towerhe@gmail.com"
10
+ s.homepage = "http://github.com/towerhe/yeqs_jquery"
11
+ s.summary = "Wrap all the jquery related components."
12
+ s.description = <<-DESC
13
+ Yeqs Jquery wraps all the jquery related components. It provides a generator for each component. You can use these generators to generate the assets of the components quickly.
14
+ DESC
15
+
16
+ s.required_rubygems_version = ">= 1.3.6"
17
+ s.rubyforge_project = "yeqs_jquery"
18
+
19
+ s.add_bundler_dependencies
20
+
21
+ s.files = Dir.glob("{app,lib,public}/**/*") + %w(Gemfile MIT-LICENSE README.rdoc Rakefile VERSION yeqs_jquery.gemspec)
22
+ end
metadata ADDED
@@ -0,0 +1,123 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: yeqs_jquery
3
+ version: !ruby/object:Gem::Version
4
+ hash: 21
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 5
10
+ version: 0.0.5
11
+ platform: ruby
12
+ authors:
13
+ - Tower He
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-08-04 00:00:00 +08:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ version_requirements: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - "="
26
+ - !ruby/object:Gem::Version
27
+ hash: 7712042
28
+ segments:
29
+ - 3
30
+ - 0
31
+ - 0
32
+ - rc
33
+ version: 3.0.0.rc
34
+ requirement: *id001
35
+ prerelease: false
36
+ type: :runtime
37
+ name: rails
38
+ description: " Yeqs Jquery wraps all the jquery related components. It provides a generator for each component. You can use these generators to generate the assets of the components quickly.\n"
39
+ email: towerhe@gmail.com
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - app/helpers/include_helper.rb
48
+ - app/helpers/highcharts_helper.rb
49
+ - lib/generators/yeqs/jquery/USAGE
50
+ - lib/generators/yeqs/jquery/jquery_generator.rb
51
+ - lib/yeqs_jquery.rb
52
+ - lib/yeqs_jquery/highchart.rb
53
+ - lib/yeqs_jquery/engine.rb
54
+ - public/components/jquerytools/jquery.tools.min.js
55
+ - public/components/jqueryrails/rails.js
56
+ - public/components/jqueryhighcharts/graphics/skies.jpg
57
+ - public/components/jqueryhighcharts/graphics/sun.png
58
+ - public/components/jqueryhighcharts/graphics/snow.png
59
+ - public/components/jqueryhighcharts/js/modules/exporting.js
60
+ - public/components/jqueryhighcharts/js/modules/exporting.src.js
61
+ - public/components/jqueryhighcharts/js/highcharts.js
62
+ - public/components/jqueryhighcharts/js/highcharts.src.js
63
+ - public/components/jqueryui/css/smoothness/jquery-ui-1.8.2.custom.css
64
+ - public/components/jqueryui/css/smoothness/images/ui-icons_888888_256x240.png
65
+ - public/components/jqueryui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
66
+ - public/components/jqueryui/css/smoothness/images/ui-icons_222222_256x240.png
67
+ - public/components/jqueryui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
68
+ - public/components/jqueryui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
69
+ - public/components/jqueryui/css/smoothness/images/ui-anim_basic_16x16.gif
70
+ - public/components/jqueryui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
71
+ - public/components/jqueryui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
72
+ - public/components/jqueryui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
73
+ - public/components/jqueryui/css/smoothness/images/ui-icons_2e83ff_256x240.png
74
+ - public/components/jqueryui/css/smoothness/images/ui-icons_454545_256x240.png
75
+ - public/components/jqueryui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
76
+ - public/components/jqueryui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
77
+ - public/components/jqueryui/css/smoothness/images/ui-icons_cd0a0a_256x240.png
78
+ - public/components/jqueryui/js/jquery-ui-1.8.2.custom.min.js
79
+ - public/components/jquery/jquery-1.4.2.min.js
80
+ - Gemfile
81
+ - MIT-LICENSE
82
+ - README.rdoc
83
+ - Rakefile
84
+ - VERSION
85
+ - yeqs_jquery.gemspec
86
+ has_rdoc: true
87
+ homepage: http://github.com/towerhe/yeqs_jquery
88
+ licenses: []
89
+
90
+ post_install_message:
91
+ rdoc_options: []
92
+
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ hash: 3
101
+ segments:
102
+ - 0
103
+ version: "0"
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ hash: 23
110
+ segments:
111
+ - 1
112
+ - 3
113
+ - 6
114
+ version: 1.3.6
115
+ requirements: []
116
+
117
+ rubyforge_project: yeqs_jquery
118
+ rubygems_version: 1.3.7
119
+ signing_key:
120
+ specification_version: 3
121
+ summary: Wrap all the jquery related components.
122
+ test_files: []
123
+