angularjs-rails-resource 1.0.1 → 1.0.2
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.
- checksums.yaml +4 -4
- data/bower.json +1 -1
- data/changelog.js +1 -10
- data/lib/angularjs-rails-resource/version.rb +1 -1
- data/package.json +1 -1
- data/vendor/assets/javascripts/angularjs/rails/resource/resource.js +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e03c98a5ea5807396c9246d9a2183c8861fbf6ec
|
|
4
|
+
data.tar.gz: 06ddc4ec3b0d2c5549783a738f35f7b28fa583ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 047426f09ba305b7d347623406e95d1c04b94726b8e3d3bd26fbc8b92bdb3c69a4d5a08821d1bc98625fd4630bd13c4fc5cbf8148d7e3f3a3ca4bb93e0adf44c
|
|
7
|
+
data.tar.gz: 386dfb97cb7fec33ae06a5b91f9bb0925750090f748005e55a1d6e8af1ff0f8cdf690487d873234670106182f232b5d7e9fccb94e92f214217b52cfa45d190ea
|
data/bower.json
CHANGED
data/changelog.js
CHANGED
|
@@ -142,7 +142,7 @@ var writeChangelog = function(stream, commits, version) {
|
|
|
142
142
|
fix: {},
|
|
143
143
|
feat: {},
|
|
144
144
|
perf: {},
|
|
145
|
-
|
|
145
|
+
deprecate: {},
|
|
146
146
|
breaks: {}
|
|
147
147
|
};
|
|
148
148
|
|
|
@@ -157,15 +157,6 @@ var writeChangelog = function(stream, commits, version) {
|
|
|
157
157
|
section[component].push(commit);
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
-
if (commit.deprecates) {
|
|
161
|
-
sections.deprecates[component] = sections.deprecates[component] || [];
|
|
162
|
-
commit.deprecates.forEach(function (deprecation) {
|
|
163
|
-
sections.deprecates[component].push({
|
|
164
|
-
subject: deprecation
|
|
165
|
-
});
|
|
166
|
-
});
|
|
167
|
-
}
|
|
168
|
-
|
|
169
160
|
if (commit.breaking) {
|
|
170
161
|
sections.breaks[component] = sections.breaks[component] || [];
|
|
171
162
|
sections.breaks[component].push({
|
data/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angularjs-rails-resource",
|
|
3
3
|
"description" : "A resource factory inspired by $resource from AngularJS",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"main" : "dist/angularjs-rails-resource.min.js",
|
|
6
6
|
"homepage" : "https://github.com/FineLinePrototyping/angularjs-rails-resource.git",
|
|
7
7
|
"author" : "",
|
|
@@ -706,7 +706,7 @@
|
|
|
706
706
|
* has completed.
|
|
707
707
|
*/
|
|
708
708
|
RailsResource.prototype.$http = function (httpConfig, resourceConfigOverrides) {
|
|
709
|
-
return this.constructor.$http(httpConfig, this,
|
|
709
|
+
return this.constructor.$http(httpConfig, this, resourceConfigOverrides);
|
|
710
710
|
};
|
|
711
711
|
|
|
712
712
|
angular.forEach(['post', 'put', 'patch'], function (method) {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: angularjs-rails-resource
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tommy Odom
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-01
|
|
12
|
+
date: 2014-03-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: A small AngularJS add-on for integrating with Rails via JSON more easily.
|
|
15
15
|
email:
|
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
requirements: []
|
|
83
83
|
rubyforge_project:
|
|
84
|
-
rubygems_version: 2.2.
|
|
84
|
+
rubygems_version: 2.2.2
|
|
85
85
|
signing_key:
|
|
86
86
|
specification_version: 4
|
|
87
87
|
summary: AngularJS add-on resource add-on for integrating with Rails
|