tableling-rails 0.0.5 → 0.0.6

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.md CHANGED
@@ -1,8 +1,13 @@
1
- # tableling-rails
1
+ # Tableling for Ruby on Rails
2
2
 
3
- Async table plugin based on Backbone Marionette.
3
+ This gem includes:
4
+
5
+ * javascript assets for the latest [Tableling](https://github.com/AlphaHydrae/tableling) release;
6
+ * active record extensions to easily generate table data.
7
+
8
+ Documentation coming soon.
4
9
 
5
10
  ## Meta
6
11
 
7
12
  * **Author:** Simon Oulevay a.k.a. Alpha Hydrae
8
- * **License:** MIT (see `LICENSE.txt`)
13
+ * **License:** MIT (see [LICENSE.txt](https://github.com/AlphaHydrae/tableling/blob/master/LICENSE.txt))
@@ -1,3 +1,3 @@
1
1
  module Tableling
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -7079,3 +7079,89 @@ Processing by BooksController#page as JSON
7079
7079
   (0.2ms) SELECT COUNT(*) FROM "books" 
7080
7080
  Book Load (0.2ms) SELECT "books".* FROM "books" ORDER BY books.title desc LIMIT 5 OFFSET 0
7081
7081
  Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.4ms)
7082
+ Connecting to database specified by database.yml
7083
+
7084
+
7085
+ Started GET "/" for 127.0.0.1 at 2012-10-17 09:24:35 +0200
7086
+ Processing by BooksController#index as HTML
7087
+ Rendered books/index.html.haml within layouts/application (1.2ms)
7088
+ Completed 500 Internal Server Error in 74ms
7089
+
7090
+ ActionView::Template::Error (couldn't find file 'jquery_ujs'
7091
+ (in /Users/unknow/Projects/tableling-rails/spec/dummy/app/assets/javascripts/application.js:14)):
7092
+ 3: %head
7093
+ 4: %title Tableling
7094
+ 5: = stylesheet_link_tag "application", :media => "all"
7095
+ 6: = javascript_include_tag "application"
7096
+ 7: = csrf_meta_tags
7097
+ 8: %body
7098
+ 9: .navbar.navbar-fixed-top.navbar-inverse
7099
+ app/views/layouts/application.html.haml:6:in `_app_views_layouts_application_html_haml__4118055509941998976_70245649877820'
7100
+
7101
+
7102
+ Rendered /Users/unknow/.rvm/gems/ruby-1.9.3-p194@tableling-rails/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
7103
+ Rendered /Users/unknow/.rvm/gems/ruby-1.9.3-p194@tableling-rails/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
7104
+ Rendered /Users/unknow/.rvm/gems/ruby-1.9.3-p194@tableling-rails/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.9ms)
7105
+ Connecting to database specified by database.yml
7106
+
7107
+
7108
+ Started GET "/" for 127.0.0.1 at 2012-10-17 09:25:13 +0200
7109
+ Processing by BooksController#index as HTML
7110
+ Rendered books/index.html.haml within layouts/application (1.1ms)
7111
+ Compiled hamlcoffee.js (432ms) (pid 6723)
7112
+ Compiled application.js (456ms) (pid 6723)
7113
+ Completed 200 OK in 517ms (Views: 516.3ms | ActiveRecord: 0.0ms)
7114
+
7115
+
7116
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:15 +0200
7117
+ Processing by BooksController#page as JSON
7118
+ Parameters: {"page"=>"1", "pageSize"=>"5"}
7119
+  (0.1ms) SELECT COUNT(*) FROM "books" 
7120
+ Book Load (0.4ms) SELECT "books".* FROM "books" LIMIT 5 OFFSET 0
7121
+ Completed 200 OK in 74ms (Views: 0.6ms | ActiveRecord: 4.2ms)
7122
+
7123
+
7124
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:16 +0200
7125
+ Processing by BooksController#page as JSON
7126
+ Parameters: {"page"=>"1", "pageSize"=>"10"}
7127
+  (0.2ms) SELECT COUNT(*) FROM "books" 
7128
+ Book Load (0.1ms) SELECT "books".* FROM "books" LIMIT 10 OFFSET 0
7129
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms)
7130
+
7131
+
7132
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:17 +0200
7133
+ Processing by BooksController#page as JSON
7134
+ Parameters: {"page"=>"1", "pageSize"=>"5"}
7135
+  (0.2ms) SELECT COUNT(*) FROM "books" 
7136
+ Book Load (0.1ms) SELECT "books".* FROM "books" LIMIT 5 OFFSET 0
7137
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.3ms)
7138
+
7139
+
7140
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:17 +0200
7141
+ Processing by BooksController#page as JSON
7142
+ Parameters: {"page"=>"1", "pageSize"=>"5", "sort"=>["title asc"]}
7143
+  (0.2ms) SELECT COUNT(*) FROM "books" 
7144
+ Book Load (0.2ms) SELECT "books".* FROM "books" ORDER BY books.title asc LIMIT 5 OFFSET 0
7145
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms)
7146
+
7147
+
7148
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:18 +0200
7149
+ Processing by BooksController#page as JSON
7150
+ Parameters: {"page"=>"1", "pageSize"=>"5", "sort"=>["title desc"]}
7151
+  (0.2ms) SELECT COUNT(*) FROM "books" 
7152
+ Book Load (0.1ms) SELECT "books".* FROM "books" ORDER BY books.title desc LIMIT 5 OFFSET 0
7153
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.3ms)
7154
+
7155
+
7156
+ Started GET "/" for 127.0.0.1 at 2012-10-17 09:25:19 +0200
7157
+ Processing by BooksController#index as HTML
7158
+ Rendered books/index.html.haml within layouts/application (0.3ms)
7159
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
7160
+
7161
+
7162
+ Started POST "/books/page" for 127.0.0.1 at 2012-10-17 09:25:19 +0200
7163
+ Processing by BooksController#page as JSON
7164
+ Parameters: {"page"=>"1", "pageSize"=>"5"}
7165
+  (0.3ms) SELECT COUNT(*) FROM "books" 
7166
+ Book Load (0.1ms) SELECT "books".* FROM "books" LIMIT 5 OFFSET 0
7167
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.4ms)
@@ -0,0 +1 @@
1
+ 6723
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tableling-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -18,7 +18,7 @@ dependencies:
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.8
21
+ version: '3.2'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -26,25 +26,9 @@ dependencies:
26
26
  requirements:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: 3.2.8
30
- - !ruby/object:Gem::Dependency
31
- name: sqlite3
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: '0'
38
- type: :development
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '0'
46
- description: Provides javascript assets for the latest Tableling release and active
47
- record extensions to easily generate table data.
29
+ version: '3.2'
30
+ description: Javascript assets for the latest Tableling release and active record
31
+ extensions to easily generate table data.
48
32
  email:
49
33
  - hydrae.alpha@gmail.com
50
34
  executables: []
@@ -123,6 +107,7 @@ files:
123
107
  - spec/dummy/README.rdoc
124
108
  - spec/dummy/script/rails
125
109
  - spec/dummy/tmp/cache/assets/BF1/770/sprockets%2F8228a53c539c582499241527570aa216
110
+ - spec/dummy/tmp/cache/assets/C18/6A0/sprockets%2F1e7024441489753901b45a24af2942e3
126
111
  - spec/dummy/tmp/cache/assets/C20/C20/sprockets%2F932e86665765e61017be1015b249d270
127
112
  - spec/dummy/tmp/cache/assets/C3F/0C0/sprockets%2F4643701467ac62c314510c8dd021916f
128
113
  - spec/dummy/tmp/cache/assets/C53/AD0/sprockets%2F712078516a81502575c831cb0a8e898e
@@ -135,6 +120,7 @@ files:
135
120
  - spec/dummy/tmp/cache/assets/C91/350/sprockets%2F6864c49a10954375948d9f306db308fb
136
121
  - spec/dummy/tmp/cache/assets/C98/B70/sprockets%2F64db420a3a172209bf0b734312a4888a
137
122
  - spec/dummy/tmp/cache/assets/C9A/900/sprockets%2Fc1b5b7611d7c10e124512724f29f241d
123
+ - spec/dummy/tmp/cache/assets/CAE/5B0/sprockets%2F046918545d85d144c4aa32d3e19625cf
138
124
  - spec/dummy/tmp/cache/assets/CAF/540/sprockets%2F8f42e689b84f0b25c0180046467adf31
139
125
  - spec/dummy/tmp/cache/assets/CB1/9A0/sprockets%2F57805dfa396248a9665cb4a0c85116d0
140
126
  - spec/dummy/tmp/cache/assets/CC1/4E0/sprockets%2F6ef77414c793c84a437244d7d965ba90
@@ -214,10 +200,12 @@ files:
214
200
  - spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
215
201
  - spec/dummy/tmp/cache/assets/E0A/510/sprockets%2F8efee416ba436e75bea85d4d367faea7
216
202
  - spec/dummy/tmp/cache/assets/E33/8F0/sprockets%2F4933e07f8ef2da7eb5bee9a6fcac3d41
203
+ - spec/dummy/tmp/cache/assets/E3C/2D0/sprockets%2Fef329f0cde3de3e956c8a8feb7b814cc
217
204
  - spec/dummy/tmp/cache/assets/E43/810/sprockets%2F79b0ef75ceb26a9c8fca797db3efba96
218
205
  - spec/dummy/tmp/cache/assets/E67/730/sprockets%2Fadd4efdfa7661cc60e8ea63cef1f0f98
219
206
  - spec/dummy/tmp/cache/assets/E96/1B0/sprockets%2F6d5fe51f9c1a3d2f898becd0bcddef3e
220
207
  - spec/dummy/tmp/cache/assets/ED4/410/sprockets%2F082adbb8e2abd8a21c8b34aebbbfbfad
208
+ - spec/dummy/tmp/pids/server.pid
221
209
  - spec/models/book_spec.rb
222
210
  - spec/spec_helper.rb
223
211
  - spec/version_spec.rb
@@ -303,6 +291,7 @@ test_files:
303
291
  - spec/dummy/README.rdoc
304
292
  - spec/dummy/script/rails
305
293
  - spec/dummy/tmp/cache/assets/BF1/770/sprockets%2F8228a53c539c582499241527570aa216
294
+ - spec/dummy/tmp/cache/assets/C18/6A0/sprockets%2F1e7024441489753901b45a24af2942e3
306
295
  - spec/dummy/tmp/cache/assets/C20/C20/sprockets%2F932e86665765e61017be1015b249d270
307
296
  - spec/dummy/tmp/cache/assets/C3F/0C0/sprockets%2F4643701467ac62c314510c8dd021916f
308
297
  - spec/dummy/tmp/cache/assets/C53/AD0/sprockets%2F712078516a81502575c831cb0a8e898e
@@ -315,6 +304,7 @@ test_files:
315
304
  - spec/dummy/tmp/cache/assets/C91/350/sprockets%2F6864c49a10954375948d9f306db308fb
316
305
  - spec/dummy/tmp/cache/assets/C98/B70/sprockets%2F64db420a3a172209bf0b734312a4888a
317
306
  - spec/dummy/tmp/cache/assets/C9A/900/sprockets%2Fc1b5b7611d7c10e124512724f29f241d
307
+ - spec/dummy/tmp/cache/assets/CAE/5B0/sprockets%2F046918545d85d144c4aa32d3e19625cf
318
308
  - spec/dummy/tmp/cache/assets/CAF/540/sprockets%2F8f42e689b84f0b25c0180046467adf31
319
309
  - spec/dummy/tmp/cache/assets/CB1/9A0/sprockets%2F57805dfa396248a9665cb4a0c85116d0
320
310
  - spec/dummy/tmp/cache/assets/CC1/4E0/sprockets%2F6ef77414c793c84a437244d7d965ba90
@@ -394,10 +384,12 @@ test_files:
394
384
  - spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
395
385
  - spec/dummy/tmp/cache/assets/E0A/510/sprockets%2F8efee416ba436e75bea85d4d367faea7
396
386
  - spec/dummy/tmp/cache/assets/E33/8F0/sprockets%2F4933e07f8ef2da7eb5bee9a6fcac3d41
387
+ - spec/dummy/tmp/cache/assets/E3C/2D0/sprockets%2Fef329f0cde3de3e956c8a8feb7b814cc
397
388
  - spec/dummy/tmp/cache/assets/E43/810/sprockets%2F79b0ef75ceb26a9c8fca797db3efba96
398
389
  - spec/dummy/tmp/cache/assets/E67/730/sprockets%2Fadd4efdfa7661cc60e8ea63cef1f0f98
399
390
  - spec/dummy/tmp/cache/assets/E96/1B0/sprockets%2F6d5fe51f9c1a3d2f898becd0bcddef3e
400
391
  - spec/dummy/tmp/cache/assets/ED4/410/sprockets%2F082adbb8e2abd8a21c8b34aebbbfbfad
392
+ - spec/dummy/tmp/pids/server.pid
401
393
  - spec/models/book_spec.rb
402
394
  - spec/spec_helper.rb
403
395
  - spec/version_spec.rb