backbone-nested-attributes 0.4.1 → 0.4.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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MWQwMDQ2NGVlMDExZGViYTQ0YmNkOTFlZDgzODM2OTdhNDM5YmEzMg==
4
+ NTc0NWRjODcwNGY4Y2I5NDZiMzhiY2IzZmFkN2RkZjk2Yjg3MGQyYw==
5
5
  data.tar.gz: !binary |-
6
- NjBlNjdhYTFiZTliZDY3YjhkYmIwM2I2Mzk3OGY5YjdjZDIyZTA0YQ==
6
+ MWNiZjc0NTdhMWY4NDQ0MzdjZjY0ZWVkYWM2YmVkNmZjZTFiZjRmZQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NGI0NGVkNDU1ZThmMmMyZTM4ODdhNjFlZmFhMTg2MGQ1M2Y5MTMwMGU1MTU5
10
- NmU4ZjQzMjI3OWY5ZTJmYTliNmRmYzAwZDY0ZDAyNDhjZDlhMzRkOTkzYzk4
11
- YzU3ZTlhMTEzNTY0YTFiNWU4MzRhMWY3N2Y0OWU3ZGNhNjRlMjM=
9
+ YTkxMGM5ODQzMjgxMjc2NjBmNDIzYzhhY2JhM2JjZDI3NTdhNWI2M2EzNGY2
10
+ Nzg3ODQ5ZDM5MTRmYTdiYzA4NDZmOTFmNDgwNzkyNzM3NzYzOTI2MzIxNjk1
11
+ M2Y5YTdhZDJhMzQzZDJhMzA2MDEyMjQ2MjhkMjc4Y2JhNGMwYzM=
12
12
  data.tar.gz: !binary |-
13
- NDUzODI3ODJjMzM1YzQ4MjYxOGRlMTBjNzQ4M2IwZWQ5ZTU5NjllMTIwNzcw
14
- ZmE2ZTU2YTY3Y2FhNjUyNWM5NGE4NzA5OGNjOWJkYWUzOTM4MDg0ZDhhNzJj
15
- MDE1MDZkMDViMTM2ZWIyM2M1OGJhMmUzYjg1YzcxZWZkZmEwOWU=
13
+ NTZkZjc0OTU0OWE3ZjQ2MDM1ZTkwYzVmMTYyYTcyZjdiMjc4MGQwYjMzODE0
14
+ MzQ0OTE5YWNhMmZiZGM5NTViZDU4NGY3Y2JkYTcyZTU3MDM0YzU2Mzk1ZDJh
15
+ ZGI5OTMwMmFhZDEyNDFmZGMxODVmZmIyNmI1Mjc3MDRhZGQ5MDQ=
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- backbone-nested-attributes (0.4.1)
4
+ backbone-nested-attributes (0.4.2)
5
5
  rails (>= 3.2.8)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ task :build_js do
16
16
  Sprockets::Environment.new do |environment|
17
17
  environment.append_path "app/assets/javascripts"
18
18
 
19
- environment['backbone-nested-attributes/all'].write_to "dist/js/backbone-nested-attributes.js"
19
+ environment['backbone-nested-attributes/all'].write_to "backbone-nested-attributes.js"
20
20
  end
21
21
  end
22
22
 
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * Copyright (c) 2013-2014 Vicente Mundim
3
3
  *
4
+ * Version: <%= Backbone::NestedAttributes::VERSION %>
5
+ *
4
6
  * MIT License
5
7
  *
6
8
  * Permission is hereby granted, free of charge, to any person obtaining
@@ -1,6 +1,8 @@
1
1
  /**
2
2
  * Copyright (c) 2013-2014 Vicente Mundim
3
3
  *
4
+ * Version: 0.4.2
5
+ *
4
6
  * MIT License
5
7
  *
6
8
  * Permission is hereby granted, free of charge, to any person obtaining
data/bower.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "backbone-nested-attributes",
3
- "version": "0.4.1",
4
- "main": "dist/js/backbone-nested-attributes.js",
3
+ "version": "0.4.2",
4
+ "main": "backbone-nested-attributes.js",
5
5
  "description": "Add Rails-like nested attributes support for Backbone.Model.",
6
6
  "license": "MIT",
7
7
  "ignore": [
8
- ".ruby-gemset",
9
- ".ruby-version",
10
- ".travis.yml",
8
+ "**/.*",
11
9
  "*.gemspec",
10
+ "Gemfile",
11
+ "Gemfile.lock",
12
12
  "Rakefile",
13
- "app/**/*",
14
- "lib/**/*",
15
- "pkg/**/*",
16
- "spec/**/*"
13
+ "app",
14
+ "lib",
15
+ "pkg",
16
+ "spec"
17
17
  ],
18
18
  "dependencies": {
19
+ "underscore": ">=1.5.2",
19
20
  "backbone": ">=1.0.0"
20
21
  }
21
22
  }
@@ -1,5 +1,5 @@
1
1
  module Backbone
2
2
  module NestedAttributes
3
- VERSION = "0.4.1"
3
+ VERSION = "0.4.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backbone-nested-attributes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vicente Mundim
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-14 00:00:00.000000000 Z
11
+ date: 2014-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -40,16 +40,15 @@ files:
40
40
  - LICENSE.txt
41
41
  - README.md
42
42
  - Rakefile
43
- - app/assets/javascripts/backbone-nested-attributes/all.js
43
+ - app/assets/javascripts/backbone-nested-attributes/all.js.erb
44
44
  - app/assets/javascripts/backbone-nested-attributes/model.js
45
45
  - app/assets/javascripts/backbone-nested-attributes/undoable.js
46
46
  - backbone-nested-attributes.gemspec
47
+ - backbone-nested-attributes.js
47
48
  - bower.json
48
- - dist/js/backbone-nested-attributes.js
49
49
  - lib/backbone-nested-attributes.rb
50
50
  - lib/backbone-nested-attributes/engine.rb
51
51
  - lib/backbone-nested-attributes/version.rb
52
- - package.json
53
52
  - spec/dummy/README.rdoc
54
53
  - spec/dummy/Rakefile
55
54
  - spec/dummy/app/assets/javascripts/application.js
@@ -1,17 +0,0 @@
1
- {
2
- "name" : "backbone-nested-attributes",
3
- "description" : "Add Rails-like nested attributes support for Backbone.Model.",
4
- "url" : "http://github.com/dtmtec/backbone-nested-attributes",
5
- "keywords" : ["model", "backbone", "nested attributes"],
6
- "author" : "Vicente Mundim <vicente.mundim@gmail.com>",
7
- "dependencies" : {
8
- "backbone" : ">=1.0.0"
9
- },
10
- "main" : "dist/js/backbone-nested-attributes.js",
11
- "version" : "0.4.1",
12
- "license" : "MIT",
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/dtmtec/backbone-nested-attributes.git"
16
- }
17
- }