resourcy-rails 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE CHANGED
@@ -3,7 +3,7 @@ Resourcy is an unobtrusive RESTful adapter for jquery-ujs and Rails.
3
3
  Documentation and other useful information can be found at
4
4
  https://github.com/jejacks0n/resourcy
5
5
 
6
- Copyright (c) 2011 Jeremy Jackson
6
+ Copyright (c) 2012 Jeremy Jackson
7
7
 
8
8
  Permission is hereby granted, free of charge, to any person obtaining
9
9
  a copy of this software and associated documentation files (the
@@ -1,3 +1,3 @@
1
1
  module Resourcy
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
@@ -0,0 +1,429 @@
1
+ (function($, undefined) {
2
+
3
+ /**
4
+ * Unobtrusive scripting adapter for jQuery
5
+ *
6
+ * Requires jQuery 1.6.0 or later.
7
+ * https://github.com/rails/jquery-ujs
8
+
9
+ * Uploading file using rails.js
10
+ * =============================
11
+ *
12
+ * By default, browsers do not allow files to be uploaded via AJAX. As a result, if there are any non-blank file fields
13
+ * in the remote form, this adapter aborts the AJAX submission and allows the form to submit through standard means.
14
+ *
15
+ * The `ajax:aborted:file` event allows you to bind your own handler to process the form submission however you wish.
16
+ *
17
+ * Ex:
18
+ * $('form').live('ajax:aborted:file', function(event, elements){
19
+ * // Implement own remote file-transfer handler here for non-blank file inputs passed in `elements`.
20
+ * // Returning false in this handler tells rails.js to disallow standard form submission
21
+ * return false;
22
+ * });
23
+ *
24
+ * The `ajax:aborted:file` event is fired when a file-type input is detected with a non-blank value.
25
+ *
26
+ * Third-party tools can use this hook to detect when an AJAX file upload is attempted, and then use
27
+ * techniques like the iframe method to upload the file instead.
28
+ *
29
+ * Required fields in rails.js
30
+ * ===========================
31
+ *
32
+ * If any blank required inputs (required="required") are detected in the remote form, the whole form submission
33
+ * is canceled. Note that this is unlike file inputs, which still allow standard (non-AJAX) form submission.
34
+ *
35
+ * The `ajax:aborted:required` event allows you to bind your own handler to inform the user of blank required inputs.
36
+ *
37
+ * !! Note that Opera does not fire the form's submit event if there are blank required inputs, so this event may never
38
+ * get fired in Opera. This event is what causes other browsers to exhibit the same submit-aborting behavior.
39
+ *
40
+ * Ex:
41
+ * $('form').live('ajax:aborted:required', function(event, elements){
42
+ * // Returning false in this handler tells rails.js to submit the form anyway.
43
+ * // The blank required inputs are passed to this function in `elements`.
44
+ * return ! confirm("Would you like to submit the form with missing info?");
45
+ * });
46
+ */
47
+
48
+ // Cut down on the number if issues from people inadvertently including jquery_ujs twice
49
+ // by detecting and raising an error when it happens.
50
+ var alreadyInitialized = function() {
51
+ var events = $._data(document, 'events');
52
+ return events && events.click && $.grep(events.click, function(e) { return e.namespace === 'rails'; }).length;
53
+ }
54
+
55
+ if ( alreadyInitialized() ) {
56
+ $.error('jquery-ujs has already been loaded!');
57
+ }
58
+
59
+ // Shorthand to make it a little easier to call public rails functions from within rails.js
60
+ var rails;
61
+
62
+ $.rails = rails = {
63
+ // Link elements bound by jquery-ujs
64
+ linkClickSelector: 'a[data-confirm], a[data-method], a[data-remote], a[data-disable-with]',
65
+
66
+ // Select elements bound by jquery-ujs
67
+ inputChangeSelector: 'select[data-remote], input[data-remote], textarea[data-remote]',
68
+
69
+ // Form elements bound by jquery-ujs
70
+ formSubmitSelector: 'form',
71
+
72
+ // Form input elements bound by jquery-ujs
73
+ formInputClickSelector: 'form input[type=submit], form input[type=image], form button[type=submit], form button:not([type])',
74
+
75
+ // Form input elements disabled during form submission
76
+ disableSelector: 'input[data-disable-with], button[data-disable-with], textarea[data-disable-with]',
77
+
78
+ // Form input elements re-enabled after form submission
79
+ enableSelector: 'input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled',
80
+
81
+ // Form required input elements
82
+ requiredInputSelector: 'input[name][required]:not([disabled]),textarea[name][required]:not([disabled])',
83
+
84
+ // Form file input elements
85
+ fileInputSelector: 'input:file',
86
+
87
+ // Link onClick disable selector with possible reenable after remote submission
88
+ linkDisableSelector: 'a[data-disable-with]',
89
+
90
+ // Make sure that every Ajax request sends the CSRF token
91
+ CSRFProtection: function(xhr) {
92
+ var token = $('meta[name="csrf-token"]').attr('content');
93
+ if (token) xhr.setRequestHeader('X-CSRF-Token', token);
94
+ },
95
+
96
+ // Triggers an event on an element and returns false if the event result is false
97
+ fire: function(obj, name, data) {
98
+ var event = $.Event(name);
99
+ obj.trigger(event, data);
100
+ return event.result !== false;
101
+ },
102
+
103
+ // Default confirm dialog, may be overridden with custom confirm dialog in $.rails.confirm
104
+ confirm: function(message) {
105
+ return confirm(message);
106
+ },
107
+
108
+ // Default ajax function, may be overridden with custom function in $.rails.ajax
109
+ ajax: function(options) {
110
+ return $.ajax(options);
111
+ },
112
+
113
+ // Default way to get an element's href. May be overridden at $.rails.href.
114
+ href: function(element) {
115
+ return element.attr('href');
116
+ },
117
+
118
+ // Submits "remote" forms and links with ajax
119
+ handleRemote: function(element) {
120
+ var method, url, data, elCrossDomain, crossDomain, withCredentials, dataType, options;
121
+
122
+ if (rails.fire(element, 'ajax:before')) {
123
+ elCrossDomain = element.data('cross-domain');
124
+ crossDomain = elCrossDomain === undefined ? null : elCrossDomain;
125
+ withCredentials = element.data('with-credentials') || null;
126
+ dataType = element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType);
127
+
128
+ if (element.is('form')) {
129
+ method = element.attr('method');
130
+ url = element.attr('action');
131
+ data = element.serializeArray();
132
+ // memoized value from clicked submit button
133
+ var button = element.data('ujs:submit-button');
134
+ if (button) {
135
+ data.push(button);
136
+ element.data('ujs:submit-button', null);
137
+ }
138
+ } else if (element.is(rails.inputChangeSelector)) {
139
+ method = element.data('method');
140
+ url = element.data('url');
141
+ data = element.serialize();
142
+ if (element.data('params')) data = data + "&" + element.data('params');
143
+ } else {
144
+ method = element.data('method');
145
+ url = rails.href(element);
146
+ data = element.data('params') || null;
147
+ }
148
+
149
+ options = {
150
+ type: method || 'GET', data: data, dataType: dataType,
151
+ // stopping the "ajax:beforeSend" event will cancel the ajax request
152
+ beforeSend: function(xhr, settings) {
153
+ if (settings.dataType === undefined) {
154
+ xhr.setRequestHeader('accept', '*/*;q=0.5, ' + settings.accepts.script);
155
+ }
156
+ return rails.fire(element, 'ajax:beforeSend', [xhr, settings]);
157
+ },
158
+ success: function(data, status, xhr) {
159
+ element.trigger('ajax:success', [data, status, xhr]);
160
+ },
161
+ complete: function(xhr, status) {
162
+ element.trigger('ajax:complete', [xhr, status]);
163
+ },
164
+ error: function(xhr, status, error) {
165
+ element.trigger('ajax:error', [xhr, status, error]);
166
+ },
167
+ xhrFields: {
168
+ withCredentials: withCredentials
169
+ },
170
+ crossDomain: crossDomain
171
+ };
172
+ // Only pass url to `ajax` options if not blank
173
+ if (url) { options.url = url; }
174
+
175
+ var jqxhr = rails.ajax(options);
176
+ element.trigger('ajax:send', jqxhr);
177
+ return jqxhr;
178
+ } else {
179
+ return false;
180
+ }
181
+ },
182
+
183
+ // Handles "data-method" on links such as:
184
+ // <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a>
185
+ handleMethod: function(link) {
186
+ var href = rails.href(link),
187
+ method = link.data('method'),
188
+ target = link.attr('target'),
189
+ csrf_token = $('meta[name=csrf-token]').attr('content'),
190
+ csrf_param = $('meta[name=csrf-param]').attr('content'),
191
+ form = $('<form method="post" action="' + href + '"></form>'),
192
+ metadata_input = '<input name="_method" value="' + method + '" type="hidden" />';
193
+
194
+ if (csrf_param !== undefined && csrf_token !== undefined) {
195
+ metadata_input += '<input name="' + csrf_param + '" value="' + csrf_token + '" type="hidden" />';
196
+ }
197
+
198
+ if (target) { form.attr('target', target); }
199
+
200
+ form.hide().append(metadata_input).appendTo('body');
201
+ form.submit();
202
+ },
203
+
204
+ /* Disables form elements:
205
+ - Caches element value in 'ujs:enable-with' data store
206
+ - Replaces element text with value of 'data-disable-with' attribute
207
+ - Sets disabled property to true
208
+ */
209
+ disableFormElements: function(form) {
210
+ form.find(rails.disableSelector).each(function() {
211
+ var element = $(this), method = element.is('button') ? 'html' : 'val';
212
+ element.data('ujs:enable-with', element[method]());
213
+ element[method](element.data('disable-with'));
214
+ element.prop('disabled', true);
215
+ });
216
+ },
217
+
218
+ /* Re-enables disabled form elements:
219
+ - Replaces element text with cached value from 'ujs:enable-with' data store (created in `disableFormElements`)
220
+ - Sets disabled property to false
221
+ */
222
+ enableFormElements: function(form) {
223
+ form.find(rails.enableSelector).each(function() {
224
+ var element = $(this), method = element.is('button') ? 'html' : 'val';
225
+ if (element.data('ujs:enable-with')) element[method](element.data('ujs:enable-with'));
226
+ element.prop('disabled', false);
227
+ });
228
+ },
229
+
230
+ /* For 'data-confirm' attribute:
231
+ - Fires `confirm` event
232
+ - Shows the confirmation dialog
233
+ - Fires the `confirm:complete` event
234
+
235
+ Returns `true` if no function stops the chain and user chose yes; `false` otherwise.
236
+ Attaching a handler to the element's `confirm` event that returns a `falsy` value cancels the confirmation dialog.
237
+ Attaching a handler to the element's `confirm:complete` event that returns a `falsy` value makes this function
238
+ return false. The `confirm:complete` event is fired whether or not the user answered true or false to the dialog.
239
+ */
240
+ allowAction: function(element) {
241
+ var message = element.data('confirm'),
242
+ answer = false, callback;
243
+ if (!message) { return true; }
244
+
245
+ if (rails.fire(element, 'confirm')) {
246
+ answer = rails.confirm(message);
247
+ callback = rails.fire(element, 'confirm:complete', [answer]);
248
+ }
249
+ return answer && callback;
250
+ },
251
+
252
+ // Helper function which checks for blank inputs in a form that match the specified CSS selector
253
+ blankInputs: function(form, specifiedSelector, nonBlank) {
254
+ var inputs = $(), input, valueToCheck,
255
+ selector = specifiedSelector || 'input,textarea',
256
+ allInputs = form.find(selector);
257
+
258
+ allInputs.each(function() {
259
+ input = $(this);
260
+ valueToCheck = input.is(':checkbox,:radio') ? input.is(':checked') : input.val();
261
+ // If nonBlank and valueToCheck are both truthy, or nonBlank and valueToCheck are both falsey
262
+ if (!valueToCheck === !nonBlank) {
263
+
264
+ // Don't count unchecked required radio if other radio with same name is checked
265
+ if (input.is(':radio') && allInputs.filter('input:radio:checked[name="' + input.attr('name') + '"]').length) {
266
+ return true; // Skip to next input
267
+ }
268
+
269
+ inputs = inputs.add(input);
270
+ }
271
+ });
272
+ return inputs.length ? inputs : false;
273
+ },
274
+
275
+ // Helper function which checks for non-blank inputs in a form that match the specified CSS selector
276
+ nonBlankInputs: function(form, specifiedSelector) {
277
+ return rails.blankInputs(form, specifiedSelector, true); // true specifies nonBlank
278
+ },
279
+
280
+ // Helper function, needed to provide consistent behavior in IE
281
+ stopEverything: function(e) {
282
+ $(e.target).trigger('ujs:everythingStopped');
283
+ e.stopImmediatePropagation();
284
+ return false;
285
+ },
286
+
287
+ // find all the submit events directly bound to the form and
288
+ // manually invoke them. If anyone returns false then stop the loop
289
+ callFormSubmitBindings: function(form, event) {
290
+ var events = form.data('events'), continuePropagation = true;
291
+ if (events !== undefined && events['submit'] !== undefined) {
292
+ $.each(events['submit'], function(i, obj){
293
+ if (typeof obj.handler === 'function') return continuePropagation = obj.handler(event);
294
+ });
295
+ }
296
+ return continuePropagation;
297
+ },
298
+
299
+ // replace element's html with the 'data-disable-with' after storing original html
300
+ // and prevent clicking on it
301
+ disableElement: function(element) {
302
+ element.data('ujs:enable-with', element.html()); // store enabled state
303
+ element.html(element.data('disable-with')); // set to disabled state
304
+ element.bind('click.railsDisable', function(e) { // prevent further clicking
305
+ return rails.stopEverything(e);
306
+ });
307
+ },
308
+
309
+ // restore element to its original state which was disabled by 'disableElement' above
310
+ enableElement: function(element) {
311
+ if (element.data('ujs:enable-with') !== undefined) {
312
+ element.html(element.data('ujs:enable-with')); // set to old enabled state
313
+ // this should be element.removeData('ujs:enable-with')
314
+ // but, there is currently a bug in jquery which makes hyphenated data attributes not get removed
315
+ element.data('ujs:enable-with', false); // clean up cache
316
+ }
317
+ element.unbind('click.railsDisable'); // enable element
318
+ }
319
+
320
+ };
321
+
322
+ if (rails.fire($(document), 'rails:attachBindings')) {
323
+
324
+ $.ajaxPrefilter(function(options, originalOptions, xhr){ if ( !options.crossDomain ) { rails.CSRFProtection(xhr); }});
325
+
326
+ $(document).delegate(rails.linkDisableSelector, 'ajax:complete', function() {
327
+ rails.enableElement($(this));
328
+ });
329
+
330
+ $(document).delegate(rails.linkClickSelector, 'click.rails', function(e) {
331
+ var link = $(this), method = link.data('method'), data = link.data('params');
332
+ if (!rails.allowAction(link)) return rails.stopEverything(e);
333
+
334
+ if (link.is(rails.linkDisableSelector)) rails.disableElement(link);
335
+
336
+ if (link.data('remote') !== undefined) {
337
+ if ( (e.metaKey || e.ctrlKey) && (!method || method === 'GET') && !data ) { return true; }
338
+
339
+ var handleRemote = rails.handleRemote(link);
340
+ // response from rails.handleRemote() will either be false or a deferred object promise.
341
+ if (handleRemote === false) {
342
+ rails.enableElement(link);
343
+ } else {
344
+ handleRemote.error( function() { rails.enableElement(link); } );
345
+ }
346
+ return false;
347
+
348
+ } else if (link.data('method')) {
349
+ rails.handleMethod(link);
350
+ return false;
351
+ }
352
+ });
353
+
354
+ $(document).delegate(rails.inputChangeSelector, 'change.rails', function(e) {
355
+ var link = $(this);
356
+ if (!rails.allowAction(link)) return rails.stopEverything(e);
357
+
358
+ rails.handleRemote(link);
359
+ return false;
360
+ });
361
+
362
+ $(document).delegate(rails.formSubmitSelector, 'submit.rails', function(e) {
363
+ var form = $(this),
364
+ remote = form.data('remote') !== undefined,
365
+ blankRequiredInputs = rails.blankInputs(form, rails.requiredInputSelector),
366
+ nonBlankFileInputs = rails.nonBlankInputs(form, rails.fileInputSelector);
367
+
368
+ if (!rails.allowAction(form)) return rails.stopEverything(e);
369
+
370
+ // skip other logic when required values are missing or file upload is present
371
+ if (blankRequiredInputs && form.attr("novalidate") == undefined && rails.fire(form, 'ajax:aborted:required', [blankRequiredInputs])) {
372
+ return rails.stopEverything(e);
373
+ }
374
+
375
+ if (remote) {
376
+ if (nonBlankFileInputs) {
377
+ // slight timeout so that the submit button gets properly serialized
378
+ // (make it easy for event handler to serialize form without disabled values)
379
+ setTimeout(function(){ rails.disableFormElements(form); }, 13);
380
+ var aborted = rails.fire(form, 'ajax:aborted:file', [nonBlankFileInputs]);
381
+
382
+ // re-enable form elements if event bindings return false (canceling normal form submission)
383
+ if (!aborted) { setTimeout(function(){ rails.enableFormElements(form); }, 13); }
384
+
385
+ return aborted;
386
+ }
387
+
388
+ // If browser does not support submit bubbling, then this live-binding will be called before direct
389
+ // bindings. Therefore, we should directly call any direct bindings before remotely submitting form.
390
+ if (!$.support.submitBubbles && $().jquery < '1.7' && rails.callFormSubmitBindings(form, e) === false) return rails.stopEverything(e);
391
+
392
+ rails.handleRemote(form);
393
+ return false;
394
+
395
+ } else {
396
+ // slight timeout so that the submit button gets properly serialized
397
+ setTimeout(function(){ rails.disableFormElements(form); }, 13);
398
+ }
399
+ });
400
+
401
+ $(document).delegate(rails.formInputClickSelector, 'click.rails', function(event) {
402
+ var button = $(this);
403
+
404
+ if (!rails.allowAction(button)) return rails.stopEverything(event);
405
+
406
+ // register the pressed submit button
407
+ var name = button.attr('name'),
408
+ data = name ? {name:name, value:button.val()} : null;
409
+
410
+ button.closest('form').data('ujs:submit-button', data);
411
+ });
412
+
413
+ $(document).delegate(rails.formSubmitSelector, 'ajax:beforeSend.rails', function(event) {
414
+ if (this == event.target) rails.disableFormElements($(this));
415
+ });
416
+
417
+ $(document).delegate(rails.formSubmitSelector, 'ajax:complete.rails', function(event) {
418
+ if (this == event.target) rails.enableFormElements($(this));
419
+ });
420
+
421
+ $(function(){
422
+ // making sure that all forms have actual up-to-date token(cached forms contain old one)
423
+ csrf_token = $('meta[name=csrf-token]').attr('content');
424
+ csrf_param = $('meta[name=csrf-param]').attr('content');
425
+ $('form input[name="' + csrf_param + '"]').val(csrf_token);
426
+ });
427
+ }
428
+
429
+ })( jQuery );
@@ -46,7 +46,7 @@ module Dummy
46
46
  # Use SQL instead of Active Record's schema dumper when creating the database.
47
47
  # This is necessary if your schema can't be completely dumped by the schema dumper,
48
48
  # like if you have constraints or database-specific column types
49
- config.active_record.schema_format = :sql
49
+ #config.active_record.schema_format = :sql
50
50
 
51
51
  # Enforce whitelist mode for mass assignment.
52
52
  # This will create an empty whitelist of attributes available for mass-assignment for all models
@@ -6,5 +6,5 @@ development:
6
6
 
7
7
  test:
8
8
  adapter: sqlite3
9
- database: ":memory:"
9
+ database: db/test.sqlite3
10
10
  timeout: 500
@@ -1,7 +1,7 @@
1
1
  Dummy::Application.routes.draw do
2
2
  resources :posts
3
3
 
4
- match 'blogs/:id/posts' => 'posts#index'
4
+ match '/blogs/:id/posts' => 'posts#index'
5
5
 
6
6
 
7
7
  # The priority is based upon order of creation:
@@ -0,0 +1,23 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120825050219) do
15
+
16
+ create_table "posts", :force => true do |t|
17
+ t.string "title"
18
+ t.text "content"
19
+ t.datetime "created_at", :null => false
20
+ t.datetime "updated_at", :null => false
21
+ end
22
+
23
+ end
Binary file
File without changes
@@ -4,7 +4,7 @@
4
4
  <meta charset="utf-8" />
5
5
  <title>Resourcy Regression Testing</title>
6
6
  <script src="/assets/jquery-1.8.0.js" type="text/javascript"></script>
7
- <script src="/assets/resourcy.jquery.js" type="text/javascript"></script>
7
+ <script src="/assets/jquery.resourcy.js" type="text/javascript"></script>
8
8
  </head>
9
9
  <body>
10
10
 
@@ -94,7 +94,7 @@ determineCallback = (resource, action, method, matchAction, matchIdOrAction) ->
94
94
  @Resourcy =
95
95
  removeAll: -> resources = {}
96
96
  handleRequest: handleRequest
97
- noConflict: Resourcy.noConflict or -> delete(Resourcy)
97
+ noConflict: @Resourcy?.noConflict or -> delete(Resourcy)
98
98
 
99
99
  resources: (path, actions = {}) -> return createResource(path).add(actions)
100
100
  resource: (path, actions = {}) -> return createResource(path, true).add(actions)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resourcy-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-11 00:00:00.000000000 Z
12
+ date: 2012-09-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -126,6 +126,7 @@ files:
126
126
  - spec/dummy/Rakefile
127
127
  - spec/dummy/app/assets/javascripts/jquery-1.7.1.js
128
128
  - spec/dummy/app/assets/javascripts/jquery-1.8.0.js
129
+ - spec/dummy/app/assets/javascripts/jquery_ujs.js
129
130
  - spec/dummy/app/controllers/posts_controller.rb
130
131
  - spec/dummy/app/models/post.rb
131
132
  - spec/dummy/app/views/posts/_form.html.erb
@@ -151,8 +152,10 @@ files:
151
152
  - spec/dummy/config/routes.rb
152
153
  - spec/dummy/db/development.sqlite3
153
154
  - spec/dummy/db/migrate/20120825050219_create_posts.rb
154
- - spec/dummy/db/structure.sql
155
+ - spec/dummy/db/schema.rb
156
+ - spec/dummy/db/test.sqlite3
155
157
  - spec/dummy/log/.gitkeep
158
+ - spec/dummy/public/favicon.ico
156
159
  - spec/dummy/public/index.html
157
160
  - spec/dummy/script/rails
158
161
  - spec/javascripts/jquery.resourcy_spec.js.coffee
@@ -174,7 +177,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
174
177
  version: '0'
175
178
  segments:
176
179
  - 0
177
- hash: -1331812618252069276
180
+ hash: 3260753811313159457
178
181
  required_rubygems_version: !ruby/object:Gem::Requirement
179
182
  none: false
180
183
  requirements:
@@ -183,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
186
  version: '0'
184
187
  segments:
185
188
  - 0
186
- hash: -1331812618252069276
189
+ hash: 3260753811313159457
187
190
  requirements: []
188
191
  rubyforge_project:
189
192
  rubygems_version: 1.8.24
@@ -194,6 +197,7 @@ test_files:
194
197
  - spec/dummy/Rakefile
195
198
  - spec/dummy/app/assets/javascripts/jquery-1.7.1.js
196
199
  - spec/dummy/app/assets/javascripts/jquery-1.8.0.js
200
+ - spec/dummy/app/assets/javascripts/jquery_ujs.js
197
201
  - spec/dummy/app/controllers/posts_controller.rb
198
202
  - spec/dummy/app/models/post.rb
199
203
  - spec/dummy/app/views/posts/_form.html.erb
@@ -219,8 +223,10 @@ test_files:
219
223
  - spec/dummy/config/routes.rb
220
224
  - spec/dummy/db/development.sqlite3
221
225
  - spec/dummy/db/migrate/20120825050219_create_posts.rb
222
- - spec/dummy/db/structure.sql
226
+ - spec/dummy/db/schema.rb
227
+ - spec/dummy/db/test.sqlite3
223
228
  - spec/dummy/log/.gitkeep
229
+ - spec/dummy/public/favicon.ico
224
230
  - spec/dummy/public/index.html
225
231
  - spec/dummy/script/rails
226
232
  - spec/javascripts/jquery.resourcy_spec.js.coffee
@@ -1,4 +0,0 @@
1
- CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL);
2
- CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL);
3
- CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version");
4
- INSERT INTO schema_migrations (version) VALUES ('20120825050219');