dugway 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,8 +29,7 @@ Gem::Specification.new do |s|
29
29
  s.add_dependency('sprockets-sass', '~> 0.9.1')
30
30
  s.add_dependency('compass', '~> 0.12.2')
31
31
  s.add_dependency('httparty', '~> 0.10.0')
32
- s.add_dependency('better_errors', '~> 0.6.0')
33
- s.add_dependency('binding_of_caller', '~> 0.7.2')
32
+ s.add_dependency('better_errors', '~> 0.9.0')
34
33
  s.add_dependency('will_paginate', '~> 3.0.4')
35
34
  s.add_dependency('i18n', '0.6.4')
36
35
  s.add_dependency('htmlentities', '~> 4.3.1')
@@ -140,7 +140,7 @@ module Dugway
140
140
  render_file('theme.js')
141
141
  end
142
142
 
143
- get %r{^/images/.+\.(jpg|jpeg|gif|png|ico)$} do
143
+ get %r{^/images/.+\.(jpg|jpeg|gif|png|ico|svg)$} do
144
144
  Rack::File.new(Dugway.source_dir).call(request.env)
145
145
  end
146
146
  end
@@ -23,3 +23,6 @@ body#home, body#products
23
23
 
24
24
  div.pagination
25
25
  clear: both
26
+
27
+ .pagination span.disabled
28
+ display: none
@@ -8,6 +8,14 @@ module Dugway
8
8
  def meta_keywords
9
9
  'example, key, words'
10
10
  end
11
+
12
+ def full_url
13
+ @request.url
14
+ end
15
+
16
+ def full_path
17
+ @request.path
18
+ end
11
19
  end
12
20
  end
13
21
  end
@@ -28,7 +28,8 @@ module Dugway
28
28
  private
29
29
 
30
30
  def order
31
- begin case @context['internal']['order']
31
+ if @context['internal']
32
+ case @context['internal']['order']
32
33
  when 'newest', 'date'
33
34
  'date'
34
35
  # We don't pass these in the API, so fake it
@@ -37,6 +38,8 @@ module Dugway
37
38
  else
38
39
  'position'
39
40
  end
41
+ else
42
+ 'position'
40
43
  end
41
44
  end
42
45
 
@@ -49,24 +52,44 @@ module Dugway
49
52
  array.sort_by! { |p| p[order] }
50
53
  end
51
54
 
52
- array.paginate({
53
- :page => (@context.registers[:params][:page] || 1).to_i,
54
- :per_page => @context['internal']['per_page']
55
- })
55
+ array.paginate({
56
+ :page => (page || 1),
57
+ :per_page => per_page
58
+ })
56
59
  end
57
60
 
58
61
  def artist
59
- @context.registers[:artist]['permalink'] rescue nil
62
+ @context.registers[:artist]['permalink'] rescue @context.registers[:params]['artist']
60
63
  end
61
64
 
62
65
  def category
63
- @context.registers[:category]['permalink'] rescue nil
66
+ @context.registers[:category]['permalink'] rescue @context.registers[:params]['category']
64
67
  end
65
68
 
66
69
  def search_terms
67
70
  params[:search]
68
71
  end
69
72
 
73
+ def page
74
+ if @context['internal'].present? && @context['internal'].has_key?('page') # has_key? here because 'page' will be nil for get blocks
75
+ @context['internal']['page']
76
+ else
77
+ @context.registers[:params][:page] if @context.registers[:params]
78
+ end
79
+ end
80
+
81
+ def per_page
82
+ per_page = if @context['internal'] and @context['internal']['per_page'].present?
83
+ @context['internal']['per_page']
84
+ elsif theme.settings['products_per_page']
85
+ theme.settings['products_per_page']
86
+ else
87
+ 100
88
+ end
89
+
90
+ per_page.to_i
91
+ end
92
+
70
93
  def dropify(products)
71
94
  products.map { |p| ProductDrop.new(p) }
72
95
  end
@@ -9,20 +9,11 @@ module Dugway
9
9
  end
10
10
 
11
11
  def product_image_url(image=nil, size=nil)
12
- unless image.blank?
13
- url = image['url']
14
-
15
- unless size.blank?
16
- size = size.to_s.downcase
17
-
18
- if thumb_size_in_pixels = thumb_size_in_pixels_for(size)
19
- dir = url[0..url.rindex('/')]
20
- ext = File.extname(url)
21
- url = "#{ dir }#{ thumb_size_in_pixels }#{ ext }"
22
- end
23
- end
12
+ thumb_size_in_pixels = thumb_size_in_pixels_for(size)
13
+ if image.blank?
14
+ url = "http://images.cdn.bigcartel.com/missing/max_h-#{thumb_size_in_pixels || 300}+max_w-#{thumb_size_in_pixels || 300}/missing.png"
24
15
  else
25
- url = "http://bigcartel.com/images/common/noimage-#{ (size || 'large').to_s }.gif"
16
+ url = image['url'].sub(/\/-\//, "/max_h-#{thumb_size_in_pixels || 1000}+max_w-#{thumb_size_in_pixels || 1000}/")
26
17
  end
27
18
 
28
19
  url
@@ -70,7 +70,7 @@ module Dugway
70
70
  end
71
71
 
72
72
  def image_files
73
- Dir.glob(File.join(source_dir, 'images', '**', '*.{png,jpg,jpeg,gif,ico}')).map { |i|
73
+ Dir.glob(File.join(source_dir, 'images', '**', '*.{png,jpg,jpeg,gif,ico,svg}')).map { |i|
74
74
  i.gsub(source_dir, '')[1..-1]
75
75
  }
76
76
  end
@@ -1,3 +1,3 @@
1
1
  module Dugway
2
- VERSION = "0.8.1"
2
+ VERSION = "0.8.2"
3
3
  end
@@ -1 +1 @@
1
- [{"price":10.0,"status":"active","created_at":"2013-02-10T19:28:11-07:00","tax":0.0,"position":1,"artists":[{"permalink":"artist-one","name":"Artist One","id":176141,"url":"/artist/artist-one"}],"shipping":[{"amount_with_others":5.0,"country":{"name":"United States","id":43,"code":"US"},"amount_alone":10.0},{"amount_with_others":10.0,"amount_alone":20.0}],"images":[{"width":475,"height":500,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599166/mens_tee_1.jpg","url":"http://cache1.bigcartel.com/product_images/92599166/mens_tee_1.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599178/mens_tee_2.jpg","url":"http://cache1.bigcartel.com/product_images/92599178/mens_tee_2.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599196/mens_tee_3.jpg","url":"http://cache1.bigcartel.com/product_images/92599196/mens_tee_3.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599214/mens_tee_4.jpg","url":"http://cache0.bigcartel.com/product_images/92599214/mens_tee_4.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599226/mens_tee_5.jpg","url":"http://cache1.bigcartel.com/product_images/92599226/mens_tee_5.jpg"}],"categories":[{"permalink":"tees","name":"Tees","id":4615193,"url":"/category/tees"}],"on_sale":false,"permalink":"my-product","name":"My Product","default_price":10.0,"id":9422939,"description":"This is a description of my product.","options":[{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Small","id":29474321},{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Medium","id":29474324},{"price":10.0,"sold_out":true,"has_custom_price":false,"name":"Large","id":29474327},{"price":15.0,"sold_out":false,"has_custom_price":true,"name":"X-Large","id":29474330}],"url":"/product/my-product"},{"price":10.0,"status":"active","created_at":"2013-03-02T10:05:34-07:00","tax":0.0,"position":2,"artists":[{"permalink":"artist-two","name":"Artist Two","id":176144,"url":"/artist/artist-two"}],"images":[{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/95272745/mens_tee_8.jpg","url":"http://cache0.bigcartel.com/product_images/95272745/mens_tee_8.jpg"}],"categories":[{"permalink":"tees","name":"Tees","id":4615193,"url":"/category/tees"}],"on_sale":false,"permalink":"my-tee","name":"My Tee","default_price":10.0,"id":9696017,"description":"This is my cool tee shirt.","options":[{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Small","id":30344519},{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Medium","id":30344522},{"price":15.0,"sold_out":false,"has_custom_price":true,"name":"Large","id":30344525}],"url":"/product/my-tee"},{"price":20.0,"status":"active","created_at":"2013-03-02T10:06:22-07:00","tax":0.0,"position":3,"artists":[],"categories":[{"permalink":"prints","name":"Prints","id":4615190,"url":"/category/prints"}],"on_sale":true,"permalink":"print","name":"Print","default_price":20.0,"id":9696032,"description":"This is my print.","options":[{"price":20.0,"sold_out":false,"has_custom_price":false,"name":"Default","id":30344567}],"url":"/product/print"}]
1
+ [{"price":10.0,"status":"active","created_at":"2013-02-10T19:28:11-07:00","tax":0.0,"position":1,"artists":[{"permalink":"artist-one","name":"Artist One","id":176141,"url":"/artist/artist-one"}],"shipping":[{"amount_with_others":5.0,"country":{"name":"United States","id":43,"code":"US"},"amount_alone":10.0},{"amount_with_others":10.0,"amount_alone":20.0}],"images":[{"width":475,"height":500,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599166/-/mens_tee_1.jpg","url":"http://cache1.bigcartel.com/product_images/92599166/-/mens_tee_1.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599178/-/mens_tee_2.jpg","url":"http://cache1.bigcartel.com/product_images/92599178/-/mens_tee_2.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599196/-/mens_tee_3.jpg","url":"http://cache1.bigcartel.com/product_images/92599196/-/mens_tee_3.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599214/-/mens_tee_4.jpg","url":"http://cache0.bigcartel.com/product_images/92599214/-/mens_tee_4.jpg"},{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/92599226/-/mens_tee_5.jpg","url":"http://cache1.bigcartel.com/product_images/92599226/-/mens_tee_5.jpg"}],"categories":[{"permalink":"tees","name":"Tees","id":4615193,"url":"/category/tees"}],"on_sale":false,"permalink":"my-product","name":"My Product","default_price":10.0,"id":9422939,"description":"This is a description of my product.","options":[{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Small","id":29474321},{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Medium","id":29474324},{"price":10.0,"sold_out":true,"has_custom_price":false,"name":"Large","id":29474327},{"price":15.0,"sold_out":false,"has_custom_price":true,"name":"X-Large","id":29474330}],"url":"/product/my-product"},{"price":10.0,"status":"active","created_at":"2013-03-02T10:05:34-07:00","tax":0.0,"position":2,"artists":[{"permalink":"artist-two","name":"Artist Two","id":176144,"url":"/artist/artist-two"}],"images":[{"width":475,"height":475,"secure_url":"https://s3.amazonaws.com/bigcartel/product_images/95272745/-/mens_tee_8.jpg","url":"http://cache0.bigcartel.com/product_images/95272745/-/mens_tee_8.jpg"}],"categories":[{"permalink":"tees","name":"Tees","id":4615193,"url":"/category/tees"}],"on_sale":false,"permalink":"my-tee","name":"My Tee","default_price":10.0,"id":9696017,"description":"This is my cool tee shirt.","options":[{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Small","id":30344519},{"price":10.0,"sold_out":false,"has_custom_price":false,"name":"Medium","id":30344522},{"price":15.0,"sold_out":false,"has_custom_price":true,"name":"Large","id":30344525}],"url":"/product/my-tee"},{"price":20.0,"status":"active","created_at":"2013-03-02T10:06:22-07:00","tax":0.0,"position":3,"artists":[],"categories":[{"permalink":"prints","name":"Prints","id":4615190,"url":"/category/prints"}],"on_sale":true,"permalink":"print","name":"Print","default_price":20.0,"id":9696032,"description":"This is my print.","options":[{"price":20.0,"sold_out":false,"has_custom_price":false,"name":"Default","id":30344567}],"url":"/product/print"}]
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="25px" height="25px" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg" version="1.1">
4
+ <desc>Missing Image Placeholder</desc>
5
+ <rect x="0" y="0" width="25" height="25" fill="gray" />
6
+ <line x1="10" y1="10" x2="15" y2="15" stroke-width="1" stroke="black"/>
7
+ <line x1="10" y1="15" x2="15" y2="10" stroke-width="1" stroke="black"/>
8
+ </svg>
@@ -5,7 +5,7 @@ describe Dugway::Drops::ImageDrop do
5
5
 
6
6
  describe "#url" do
7
7
  it "should return the image's url" do
8
- image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/mens_tee_1.jpg'
8
+ image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/-/mens_tee_1.jpg'
9
9
  end
10
10
  end
11
11
 
@@ -3,9 +3,11 @@ require 'spec_helper'
3
3
  describe Dugway::Drops::PageDrop do
4
4
  let(:page) {
5
5
  page = Dugway.store.page('about-us')
6
- page['full_url'] = 'http://test.bigcartel.com/about-us'
7
- page['full_path'] = '/about-us'
8
- Dugway::Drops::PageDrop.new(page)
6
+ Dugway::Drops::PageDrop.new(page).tap { |drop|
7
+ drop.context = Liquid::Context.new({}, {}, {
8
+ :request => Rack::Request.new({'PATH_INFO' => '/about-us', 'rack.url_scheme' => 'http', 'HTTP_HOST' => 'test.bigcartel.com', 'SERVER_PORT' => 80})
9
+ })
10
+ }
9
11
  }
10
12
 
11
13
  describe "#id" do
@@ -26,4 +26,10 @@ describe Dugway::Drops::PagesDrop do
26
26
  pages.blah.should be_nil
27
27
  end
28
28
  end
29
+
30
+ private
31
+
32
+ def rendered_template(template, assigns={}, registers={})
33
+ Liquid::Template.parse(template).render(assigns, :registers => { :currency => Dugway.store.currency }.merge(registers))
34
+ end
29
35
  end
@@ -213,7 +213,7 @@ describe Dugway::Drops::ProductDrop do
213
213
  it "should return the product's first image" do
214
214
  image = product.image
215
215
  image.should be_an_instance_of(Dugway::Drops::ImageDrop)
216
- image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/mens_tee_1.jpg'
216
+ image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/-/mens_tee_1.jpg'
217
217
  end
218
218
  end
219
219
 
@@ -225,7 +225,7 @@ describe Dugway::Drops::ProductDrop do
225
225
 
226
226
  image = images.first
227
227
  image.should be_an_instance_of(Dugway::Drops::ImageDrop)
228
- image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/mens_tee_1.jpg'
228
+ image.url.should == 'http://cache1.bigcartel.com/product_images/92599166/-/mens_tee_1.jpg'
229
229
  end
230
230
  end
231
231
 
@@ -0,0 +1,55 @@
1
+ require 'spec_helper'
2
+
3
+ describe Dugway::Filters::UrlFilters do
4
+ describe "#product_image_url" do
5
+ let(:product) { Dugway.store.products.first }
6
+ let(:product_image) { Dugway::Drops::ImageDrop.new(product['images'].first) }
7
+ let(:image_url) { product['images'].first['url'] }
8
+
9
+ describe "when image is not missing" do
10
+ it "should show image with default size" do
11
+ template = rendered_template("{{ image | product_image_url }}", 'image' => product_image)
12
+ template.should =~ /max_h-1000\+max_w-1000/
13
+ template.should =~ /#{Regexp.escape(File.basename(image_url))}/
14
+ end
15
+
16
+ it "should show a image with custom size" do
17
+ template = rendered_template("{{ image | product_image_url: 'thumb' }}", 'image' => product_image)
18
+ template.should =~ /max_h-75\+max_w-75/
19
+ template.should =~ /#{Regexp.escape(File.basename(image_url))}/
20
+ end
21
+
22
+ it "should show image with default size when its random crap" do
23
+ template = rendered_template("{{ image | product_image_url: 'snarble' }}", 'image' => product_image)
24
+ template.should =~ /max_h-1000\+max_w-1000/
25
+ template.should =~ /#{Regexp.escape(File.basename(image_url))}/
26
+ end
27
+ end
28
+
29
+ describe "when image is missing" do
30
+ it "should show missing image with default large size" do
31
+ template = rendered_template("{{ image | product_image_url }}", 'image' => nil)
32
+ template.should =~ /max_h-300\+max_w-300/
33
+ template.should =~ /missing\.png/
34
+ end
35
+
36
+ it "should show missing image with custom size" do
37
+ template = rendered_template("{{ image | product_image_url: 'thumb' }}", 'image' => nil)
38
+ template.should =~ /max_h-75\+max_w-75/
39
+ template.should =~ /missing\.png/
40
+ end
41
+
42
+ it "should show missing image with default size when its random crap" do
43
+ template = rendered_template("{{ image | product_image_url: 'snarble' }}", 'image' => nil)
44
+ template.should =~ /max_h-300\+max_w-300/
45
+ template.should =~ /missing\.png/
46
+ end
47
+ end
48
+ end
49
+
50
+ private
51
+
52
+ def rendered_template(template, assigns={})
53
+ Liquid::Template.parse(template).render(assigns, :registers => { :currency => Dugway.store.currency })
54
+ end
55
+ end
@@ -0,0 +1,19 @@
1
+ require 'spec_helper'
2
+
3
+ describe "For Loops" do
4
+ let(:products) { Dugway.store.products }
5
+ let(:products_drop) { Dugway::Drops::ProductsDrop.new(products) }
6
+
7
+ it "should render each product name" do
8
+ template = rendered_template("{% for product in products.all %} {{product.name}} {% endfor %}", 'products' => products_drop)
9
+ products.each do |product|
10
+ template.should =~ /#{Regexp.escape(product['name'])}/
11
+ end
12
+ end
13
+
14
+ private
15
+
16
+ def rendered_template(template, assigns={})
17
+ Liquid::Template.parse(template).render(assigns, :registers => { :currency => Dugway.store.currency })
18
+ end
19
+ end
@@ -102,13 +102,13 @@ describe Dugway::Theme do
102
102
 
103
103
  describe "#files" do
104
104
  it "should return an array of all files" do
105
- theme.files.should == ["cart.html", "checkout.html", "contact.html", "home.html", "layout.html", "maintenance.html", "product.html", "products.html", "screenshot.jpg", "settings.json", "success.html", "theme.css", "theme.js", "images/bc_badge.png"]
105
+ theme.files.should == ["cart.html", "checkout.html", "contact.html", "home.html", "layout.html", "maintenance.html", "product.html", "products.html", "screenshot.jpg", "settings.json", "success.html", "theme.css", "theme.js", "images/bc_badge.png", "images/small.svg"]
106
106
  end
107
107
  end
108
108
 
109
109
  describe "#image_files" do
110
110
  it "should return an array of all image files" do
111
- theme.image_files.should == ["images/bc_badge.png"]
111
+ theme.image_files.should == ["images/bc_badge.png", "images/small.svg"]
112
112
  end
113
113
  end
114
114
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dugway
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
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: 2013-07-26 00:00:00.000000000 Z
12
+ date: 2013-08-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -194,7 +194,7 @@ dependencies:
194
194
  requirements:
195
195
  - - ~>
196
196
  - !ruby/object:Gem::Version
197
- version: 0.6.0
197
+ version: 0.9.0
198
198
  type: :runtime
199
199
  prerelease: false
200
200
  version_requirements: !ruby/object:Gem::Requirement
@@ -202,23 +202,7 @@ dependencies:
202
202
  requirements:
203
203
  - - ~>
204
204
  - !ruby/object:Gem::Version
205
- version: 0.6.0
206
- - !ruby/object:Gem::Dependency
207
- name: binding_of_caller
208
- requirement: !ruby/object:Gem::Requirement
209
- none: false
210
- requirements:
211
- - - ~>
212
- - !ruby/object:Gem::Version
213
- version: 0.7.2
214
- type: :runtime
215
- prerelease: false
216
- version_requirements: !ruby/object:Gem::Requirement
217
- none: false
218
- requirements:
219
- - - ~>
220
- - !ruby/object:Gem::Version
221
- version: 0.7.2
205
+ version: 0.9.0
222
206
  - !ruby/object:Gem::Dependency
223
207
  name: will_paginate
224
208
  requirement: !ruby/object:Gem::Requirement
@@ -557,6 +541,7 @@ files:
557
541
  - spec/fixtures/theme/contact.html
558
542
  - spec/fixtures/theme/home.html
559
543
  - spec/fixtures/theme/images/bc_badge.png
544
+ - spec/fixtures/theme/images/small.svg
560
545
  - spec/fixtures/theme/javascripts/one.js
561
546
  - spec/fixtures/theme/javascripts/two.js.coffee
562
547
  - spec/fixtures/theme/layout.html
@@ -591,6 +576,8 @@ files:
591
576
  - spec/units/dugway/liquid/drops/shipping_option_drop_spec.rb
592
577
  - spec/units/dugway/liquid/drops/theme_drop_spec.rb
593
578
  - spec/units/dugway/liquid/filters/core_filters_spec.rb
579
+ - spec/units/dugway/liquid/filters/url_filters_spec.rb
580
+ - spec/units/dugway/liquid/misc/for_loop_spec.rb
594
581
  - spec/units/dugway/request_spec.rb
595
582
  - spec/units/dugway/store_spec.rb
596
583
  - spec/units/dugway/template_spec.rb
@@ -608,12 +595,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
608
595
  - - ! '>='
609
596
  - !ruby/object:Gem::Version
610
597
  version: '0'
598
+ segments:
599
+ - 0
600
+ hash: 4314149561505291275
611
601
  required_rubygems_version: !ruby/object:Gem::Requirement
612
602
  none: false
613
603
  requirements:
614
604
  - - ! '>='
615
605
  - !ruby/object:Gem::Version
616
606
  version: '0'
607
+ segments:
608
+ - 0
609
+ hash: 4314149561505291275
617
610
  requirements: []
618
611
  rubyforge_project:
619
612
  rubygems_version: 1.8.23
@@ -632,6 +625,7 @@ test_files:
632
625
  - spec/fixtures/theme/contact.html
633
626
  - spec/fixtures/theme/home.html
634
627
  - spec/fixtures/theme/images/bc_badge.png
628
+ - spec/fixtures/theme/images/small.svg
635
629
  - spec/fixtures/theme/javascripts/one.js
636
630
  - spec/fixtures/theme/javascripts/two.js.coffee
637
631
  - spec/fixtures/theme/layout.html
@@ -666,8 +660,9 @@ test_files:
666
660
  - spec/units/dugway/liquid/drops/shipping_option_drop_spec.rb
667
661
  - spec/units/dugway/liquid/drops/theme_drop_spec.rb
668
662
  - spec/units/dugway/liquid/filters/core_filters_spec.rb
663
+ - spec/units/dugway/liquid/filters/url_filters_spec.rb
664
+ - spec/units/dugway/liquid/misc/for_loop_spec.rb
669
665
  - spec/units/dugway/request_spec.rb
670
666
  - spec/units/dugway/store_spec.rb
671
667
  - spec/units/dugway/template_spec.rb
672
668
  - spec/units/dugway/theme_spec.rb
673
- has_rdoc: