rails_pivot_table_js 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/rails_pivot_table_js/application.js +13 -0
- data/app/assets/javascripts/rails_pivot_table_js/d3_renderers.js +84 -0
- data/app/assets/javascripts/rails_pivot_table_js/gchart_renderers.js +183 -0
- data/app/assets/javascripts/rails_pivot_table_js/nrecopivottableext.js +356 -0
- data/app/assets/javascripts/rails_pivot_table_js/pivot.js +1510 -0
- data/app/assets/javascripts/rails_pivot_table_js/pivot.pt.js +83 -0
- data/app/assets/stylesheets/rails_pivot_table_js/application.css +15 -0
- data/app/assets/stylesheets/rails_pivot_table_js/pivot.css +228 -0
- data/app/controllers/rails_pivot_table_js/application_controller.rb +4 -0
- data/app/helpers/rails_pivot_table_js/application_helper.rb +7 -0
- data/app/views/layouts/rails_pivot_table_js/application.html.erb +14 -0
- data/app/views/rails_pivot_table_js/_pivot.html.haml +61 -0
- data/config/routes.rb +2 -0
- data/lib/rails_pivot_table_js/engine.rb +5 -0
- data/lib/rails_pivot_table_js/version.rb +3 -0
- data/lib/rails_pivot_table_js.rb +4 -0
- data/lib/tasks/rails_pivot_table_js_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +79 -0
- data/test/dummy/config/environments/test.rb +42 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +8 -0
- data/test/rails_pivot_table_js_test.rb +7 -0
- data/test/test_helper.rb +21 -0
- metadata +158 -0
metadata
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails_pivot_table_js
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- José Lopes Neto
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-04-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 3.2.6
|
20
|
+
- - <
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '5'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.2.6
|
30
|
+
- - <
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '5'
|
33
|
+
description: RailsPivotTableJs
|
34
|
+
email:
|
35
|
+
- jose.lopes.santos.neto@gmail.com
|
36
|
+
executables: []
|
37
|
+
extensions: []
|
38
|
+
extra_rdoc_files: []
|
39
|
+
files:
|
40
|
+
- MIT-LICENSE
|
41
|
+
- README.rdoc
|
42
|
+
- Rakefile
|
43
|
+
- app/assets/javascripts/rails_pivot_table_js/application.js
|
44
|
+
- app/assets/javascripts/rails_pivot_table_js/d3_renderers.js
|
45
|
+
- app/assets/javascripts/rails_pivot_table_js/gchart_renderers.js
|
46
|
+
- app/assets/javascripts/rails_pivot_table_js/nrecopivottableext.js
|
47
|
+
- app/assets/javascripts/rails_pivot_table_js/pivot.js
|
48
|
+
- app/assets/javascripts/rails_pivot_table_js/pivot.pt.js
|
49
|
+
- app/assets/stylesheets/rails_pivot_table_js/application.css
|
50
|
+
- app/assets/stylesheets/rails_pivot_table_js/pivot.css
|
51
|
+
- app/controllers/rails_pivot_table_js/application_controller.rb
|
52
|
+
- app/helpers/rails_pivot_table_js/application_helper.rb
|
53
|
+
- app/views/layouts/rails_pivot_table_js/application.html.erb
|
54
|
+
- app/views/rails_pivot_table_js/_pivot.html.haml
|
55
|
+
- config/routes.rb
|
56
|
+
- lib/rails_pivot_table_js.rb
|
57
|
+
- lib/rails_pivot_table_js/engine.rb
|
58
|
+
- lib/rails_pivot_table_js/version.rb
|
59
|
+
- lib/tasks/rails_pivot_table_js_tasks.rake
|
60
|
+
- test/dummy/README.rdoc
|
61
|
+
- test/dummy/Rakefile
|
62
|
+
- test/dummy/app/assets/javascripts/application.js
|
63
|
+
- test/dummy/app/assets/stylesheets/application.css
|
64
|
+
- test/dummy/app/controllers/application_controller.rb
|
65
|
+
- test/dummy/app/helpers/application_helper.rb
|
66
|
+
- test/dummy/app/views/layouts/application.html.erb
|
67
|
+
- test/dummy/bin/bundle
|
68
|
+
- test/dummy/bin/rails
|
69
|
+
- test/dummy/bin/rake
|
70
|
+
- test/dummy/bin/setup
|
71
|
+
- test/dummy/config.ru
|
72
|
+
- test/dummy/config/application.rb
|
73
|
+
- test/dummy/config/boot.rb
|
74
|
+
- test/dummy/config/database.yml
|
75
|
+
- test/dummy/config/environment.rb
|
76
|
+
- test/dummy/config/environments/development.rb
|
77
|
+
- test/dummy/config/environments/production.rb
|
78
|
+
- test/dummy/config/environments/test.rb
|
79
|
+
- test/dummy/config/initializers/assets.rb
|
80
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
81
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
82
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
83
|
+
- test/dummy/config/initializers/inflections.rb
|
84
|
+
- test/dummy/config/initializers/mime_types.rb
|
85
|
+
- test/dummy/config/initializers/session_store.rb
|
86
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
87
|
+
- test/dummy/config/locales/en.yml
|
88
|
+
- test/dummy/config/routes.rb
|
89
|
+
- test/dummy/config/secrets.yml
|
90
|
+
- test/dummy/public/404.html
|
91
|
+
- test/dummy/public/422.html
|
92
|
+
- test/dummy/public/500.html
|
93
|
+
- test/dummy/public/favicon.ico
|
94
|
+
- test/integration/navigation_test.rb
|
95
|
+
- test/rails_pivot_table_js_test.rb
|
96
|
+
- test/test_helper.rb
|
97
|
+
homepage: https://github.com/jlneto/rails_pivot_table_js
|
98
|
+
licenses:
|
99
|
+
- MIT
|
100
|
+
metadata: {}
|
101
|
+
post_install_message:
|
102
|
+
rdoc_options: []
|
103
|
+
require_paths:
|
104
|
+
- lib
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
|
+
requirements:
|
112
|
+
- - '>='
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '0'
|
115
|
+
requirements: []
|
116
|
+
rubyforge_project:
|
117
|
+
rubygems_version: 2.4.7
|
118
|
+
signing_key:
|
119
|
+
specification_version: 4
|
120
|
+
summary: RailsPivotTableJs.
|
121
|
+
test_files:
|
122
|
+
- test/dummy/app/assets/javascripts/application.js
|
123
|
+
- test/dummy/app/assets/stylesheets/application.css
|
124
|
+
- test/dummy/app/controllers/application_controller.rb
|
125
|
+
- test/dummy/app/helpers/application_helper.rb
|
126
|
+
- test/dummy/app/views/layouts/application.html.erb
|
127
|
+
- test/dummy/bin/bundle
|
128
|
+
- test/dummy/bin/rails
|
129
|
+
- test/dummy/bin/rake
|
130
|
+
- test/dummy/bin/setup
|
131
|
+
- test/dummy/config/application.rb
|
132
|
+
- test/dummy/config/boot.rb
|
133
|
+
- test/dummy/config/database.yml
|
134
|
+
- test/dummy/config/environment.rb
|
135
|
+
- test/dummy/config/environments/development.rb
|
136
|
+
- test/dummy/config/environments/production.rb
|
137
|
+
- test/dummy/config/environments/test.rb
|
138
|
+
- test/dummy/config/initializers/assets.rb
|
139
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
140
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
141
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
142
|
+
- test/dummy/config/initializers/inflections.rb
|
143
|
+
- test/dummy/config/initializers/mime_types.rb
|
144
|
+
- test/dummy/config/initializers/session_store.rb
|
145
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
146
|
+
- test/dummy/config/locales/en.yml
|
147
|
+
- test/dummy/config/routes.rb
|
148
|
+
- test/dummy/config/secrets.yml
|
149
|
+
- test/dummy/config.ru
|
150
|
+
- test/dummy/public/404.html
|
151
|
+
- test/dummy/public/422.html
|
152
|
+
- test/dummy/public/500.html
|
153
|
+
- test/dummy/public/favicon.ico
|
154
|
+
- test/dummy/Rakefile
|
155
|
+
- test/dummy/README.rdoc
|
156
|
+
- test/integration/navigation_test.rb
|
157
|
+
- test/rails_pivot_table_js_test.rb
|
158
|
+
- test/test_helper.rb
|