angularjs-rails-resource 0.1.3 → 0.1.4

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/.gitignore CHANGED
@@ -17,3 +17,5 @@ test/version_tmp
17
17
  tmp
18
18
  test_out
19
19
  atlassian-ide-plugin.xml
20
+ node_modules
21
+
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ language: node_js
2
+ node_js:
3
+ - 0.8
4
+
5
+ before_script:
6
+ - export DISPLAY=:99.0
7
+ - sh -e /etc/init.d/xvfb start
8
+
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # AngularJS Rails Resource
2
+ [![Build Status](https://travis-ci.org/FineLinePrototyping/angularjs-rails-resource.png)](https://travis-ci.org/FineLinePrototyping/angularjs-rails-resource)
2
3
 
3
4
  A resource factory inspired by $resource from AngularJS and [Misko's recommendation](http://stackoverflow.com/questions/11850025/recommended-way-of-getting-data-from-the-server).
4
5
 
@@ -1,7 +1,7 @@
1
1
  module Angularjs
2
2
  module Rails
3
3
  module Resource
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
6
6
  end
7
7
  end
data/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "angularjs-rails-resource",
3
+ "version": "0.0.0",
4
+ "dependencies": {
5
+ "karma": "~0.8"
6
+ },
7
+ "scripts": {
8
+ "test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS"
9
+ }
10
+ }
11
+
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: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-04-09 00:00:00.000000000 Z
13
+ date: 2013-04-10 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: A small AngularJS add-on for integrating with Rails via JSON more easily.
16
16
  email:
@@ -21,6 +21,7 @@ extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
23
23
  - .gitignore
24
+ - .travis.yml
24
25
  - Gemfile
25
26
  - LICENSE
26
27
  - README.md
@@ -29,6 +30,7 @@ files:
29
30
  - karma.conf.js
30
31
  - lib/angularjs-rails-resource.rb
31
32
  - lib/angularjs-rails-resource/version.rb
33
+ - package.json
32
34
  - test/lib/angular/angular-bootstrap-prettify.js
33
35
  - test/lib/angular/angular-bootstrap.js
34
36
  - test/lib/angular/angular-cookies.js