jbuilder_rspec_generator 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/jbuilder_rspec_generator.gemspec +2 -2
- data/lib/generators/rspec/templates/show_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 208ab584290fd227602acad24e3d0ebd97ced6a1
|
4
|
+
data.tar.gz: 32db548f1651ef8a4b172131d7e049fff974b615
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f943cb09c060c6ca417de784974497a257e511522d63b1089e4d44e7574c7822b681e606cb18f4403be56c93d0e079995982493f9118aed2420d95f712f0978
|
7
|
+
data.tar.gz: 19a7140aba4e34656dae2a3404a30febad807de5318176c3c28dab62b1b6698fbd8dd98230a51ff1305b67b4ed2f722559b731d10f8f0eac8ee769241528f7b4
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: jbuilder_rspec_generator 1.0.
|
5
|
+
# stub: jbuilder_rspec_generator 1.0.3 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "jbuilder_rspec_generator"
|
9
|
-
s.version = "1.0.
|
9
|
+
s.version = "1.0.3"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
@@ -34,7 +34,7 @@ describe "<%= ns_table_name %>/show.json.jbuilder", type: :view do
|
|
34
34
|
|
35
35
|
hash = MultiJson.load rendered
|
36
36
|
expect(hash.keys.sort).to eq attributes.sort
|
37
|
-
expected = MultiJson.load MultiJson.dump
|
37
|
+
expected = MultiJson.load MultiJson.dump @<%= ns_file_name %>.attributes.slice *attributes
|
38
38
|
expect(hash).to eq expected
|
39
39
|
<% for attribute in attributes -%>
|
40
40
|
# expect(hash['<%= attribute.name %>']).to eq expected['<%= attribute.name %>']
|