comable-frontend-fashionable 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +7 -0
  2. data/README.rdoc +28 -0
  3. data/Rakefile +4 -0
  4. data/app/assets/images/10822071_04_75_JP.gif +0 -0
  5. data/app/assets/images/banner_QR.gif +0 -0
  6. data/app/assets/images/banner_fb.gif +0 -0
  7. data/app/assets/images/banner_member.gif +0 -0
  8. data/app/assets/images/banner_mm.gif +0 -0
  9. data/app/assets/images/banner_specialprice.jpg +0 -0
  10. data/app/assets/images/banner_staffsnapblog.jpg +0 -0
  11. data/app/assets/images/banner_tw.gif +0 -0
  12. data/app/assets/images/bt_delete.png +0 -0
  13. data/app/assets/images/bt_icon.png +0 -0
  14. data/app/assets/images/bt_login.png +0 -0
  15. data/app/assets/images/bt_member.png +0 -0
  16. data/app/assets/images/cart.png +0 -0
  17. data/app/assets/images/forget_icon.png +0 -0
  18. data/app/assets/images/header_logo.gif +0 -0
  19. data/app/assets/images/icon.png +0 -0
  20. data/app/assets/images/line_bg.gif +0 -0
  21. data/app/assets/images/logo.gif +0 -0
  22. data/app/assets/images/logo.png +0 -0
  23. data/app/assets/images/menu_arrow_down.png +0 -0
  24. data/app/assets/images/menu_arrow_up.png +0 -0
  25. data/app/assets/images/pagetop.gif +0 -0
  26. data/app/assets/images/ranking_01.jpg +0 -0
  27. data/app/assets/images/ranking_icon01.png +0 -0
  28. data/app/assets/images/ranking_icon02.png +0 -0
  29. data/app/assets/images/ranking_icon03.png +0 -0
  30. data/app/assets/images/search.png +0 -0
  31. data/app/assets/images/shoes_02.jpg +0 -0
  32. data/app/assets/images/shoes_04.jpg +0 -0
  33. data/app/assets/images/shoes_05.jpg +0 -0
  34. data/app/assets/images/shoppingcart.png +0 -0
  35. data/app/assets/images/special01.jpg +0 -0
  36. data/app/assets/images/special02.jpg +0 -0
  37. data/app/assets/images/special03.jpg +0 -0
  38. data/app/assets/images/step_01.gif +0 -0
  39. data/app/assets/images/step_01.png +0 -0
  40. data/app/assets/images/step_02.gif +0 -0
  41. data/app/assets/images/step_02.png +0 -0
  42. data/app/assets/images/step_03.gif +0 -0
  43. data/app/assets/images/step_03.png +0 -0
  44. data/app/assets/images/step_04.gif +0 -0
  45. data/app/assets/images/step_04.png +0 -0
  46. data/app/assets/images/top.jpg +0 -0
  47. data/app/assets/images/tops_01.jpg +0 -0
  48. data/app/assets/images/tops_02.jpg +0 -0
  49. data/app/assets/images/tops_04.jpg +0 -0
  50. data/app/assets/javascripts/comable/application.js +15 -0
  51. data/app/assets/javascripts/comable/base.js.coffee +24 -0
  52. data/app/assets/javascripts/comable/products.js.coffee +32 -0
  53. data/app/assets/stylesheets/comable/application.css +14 -0
  54. data/app/assets/stylesheets/comable/carts.scss +339 -0
  55. data/app/assets/stylesheets/comable/common.scss +284 -0
  56. data/app/assets/stylesheets/comable/customers.scss +255 -0
  57. data/app/assets/stylesheets/comable/detail.css +225 -0
  58. data/app/assets/stylesheets/comable/footer-common.css +121 -0
  59. data/app/assets/stylesheets/comable/home.css +1 -0
  60. data/app/assets/stylesheets/comable/index.css +168 -0
  61. data/app/assets/stylesheets/comable/orders.scss +341 -0
  62. data/app/assets/stylesheets/comable/passwords.scss +205 -0
  63. data/app/assets/stylesheets/comable/products.scss +787 -0
  64. data/app/assets/stylesheets/comable/registrations.scss +278 -0
  65. data/app/assets/stylesheets/comable/sessions.scss +287 -0
  66. data/app/assets/stylesheets/comable/top.scss +262 -0
  67. data/app/assets/stylesheets/comable/users.scss +255 -0
  68. data/app/controllers/comable/application_controller.rb +23 -0
  69. data/app/decorators/comable/product_decorator.rb +26 -0
  70. data/app/decorators/comable/products_controller_decorator.rb +18 -0
  71. data/app/views/comable/carts/show.html.slim +53 -0
  72. data/app/views/comable/home/show.html.slim +50 -0
  73. data/app/views/comable/orders/confirm.slim +82 -0
  74. data/app/views/comable/orders/create.slim +17 -0
  75. data/app/views/comable/orders/delivery.slim +52 -0
  76. data/app/views/comable/orders/orderer.slim +72 -0
  77. data/app/views/comable/orders/payment.slim +60 -0
  78. data/app/views/comable/orders/shipment.slim +60 -0
  79. data/app/views/comable/orders/signin.slim +89 -0
  80. data/app/views/comable/products/index.html.slim +60 -0
  81. data/app/views/comable/products/show.html.slim +63 -0
  82. data/app/views/comable/shared/_address.slim +24 -0
  83. data/app/views/comable/shared/_address_form.slim +60 -0
  84. data/app/views/comable/shared/_footer.slim +17 -0
  85. data/app/views/comable/shared/_header.slim +30 -0
  86. data/app/views/comable/shared/_sidebar.slim +20 -0
  87. data/app/views/comable/users/_address.slim +14 -0
  88. data/app/views/comable/users/addresses.slim +58 -0
  89. data/app/views/comable/users/show.slim +35 -0
  90. data/app/views/devise/passwords/edit.slim +12 -0
  91. data/app/views/devise/passwords/new.slim +20 -0
  92. data/app/views/devise/registrations/edit.html.slim +45 -0
  93. data/app/views/devise/registrations/new.html.slim +30 -0
  94. data/app/views/devise/sessions/new.slim +32 -0
  95. data/app/views/errors/error_404.slim +6 -0
  96. data/app/views/errors/error_500.slim +6 -0
  97. data/app/views/layouts/comable/application.slim +51 -0
  98. data/app/views/layouts/comable/error.slim +42 -0
  99. data/config/initializers/assets.rb +2 -0
  100. data/config/locales/fashionable_en.yml +11 -0
  101. data/config/locales/fashionable_ja.yml +11 -0
  102. data/lib/comable/frontend/fashionable/engine.rb +14 -0
  103. data/lib/comable/frontend/fashionable.rb +7 -0
  104. metadata +233 -0
@@ -0,0 +1,20 @@
1
+ #menu
2
+ .category
3
+ p.title カテゴリーから探す
4
+ dl#acMenu
5
+ - Comable::Category.roots.each do |category|
6
+ dt.audative = category.name
7
+ dd style=("display: none;")
8
+ p
9
+ = link_to "全てを見る", comable.products_path(category_id: category.id)
10
+ - category.children.each do |child|
11
+ p
12
+ = link_to_category child, force_link: true
13
+ .sns-banner
14
+ a href="https://twitter.com/elecoma"
15
+ = image_tag 'banner_tw.gif'
16
+ imges.shoppingcart alt="" src="../../../../../../images/banner_tw.gif" /
17
+ a href="https://www.facebook.com/pages/elecoma/108866442480194"
18
+ = image_tag 'banner_fb.gif'
19
+ imges.shoppingcart alt="" src="../../../../../../images/banner_fb.gif" /
20
+
@@ -0,0 +1,14 @@
1
+ = render 'comable/shared/address', address: address
2
+
3
+ ul.buttons.list-inline
4
+ - if address != address.user.bill_address
5
+ li.use_bill_address
6
+ = form_for current_comable_user, as: :user, url: comable.addresses_user_url, method: :put do |f|
7
+ = f.hidden_field :bill_address_id, value: address.id
8
+ = f.submit Comable.t('use_as_billing_address'), class: 'btn btn-default'
9
+
10
+ - if address != address.user.ship_address
11
+ li.use_ship_address
12
+ = form_for current_comable_user, as: :user, url: comable.addresses_user_url, method: :put do |f|
13
+ = f.hidden_field :ship_address_id, value: address.id
14
+ = f.submit Comable.t('use_as_shipping_address'), class: 'btn btn-default'
@@ -0,0 +1,58 @@
1
+ #warp
2
+ h2 マイページ:アドレス帳
3
+ hr.line-bg
4
+ .my-menu
5
+ p
6
+ span >>>
7
+ = link_to '注文履歴', comable.user_registration_path
8
+ p
9
+ span >>>
10
+ = link_to "メールアドレス・パスワード変更", comable.edit_user_path
11
+ p
12
+ span >>>
13
+ = link_to "アドレス帳編集", comable.addresses_user_path
14
+ .my-contents
15
+ = form_for current_comable_user, as: :user, url: comable.addresses_user_url, method: :put do |f|
16
+ - current_comable_user.errors.full_messages.each do |full_message|
17
+ li = full_message
18
+ - if current_comable_user.addresses.empty?
19
+ .not_found
20
+ p
21
+ = Comable.t('not_found')
22
+ - else
23
+ .row
24
+ table.address
25
+ h2
26
+ = current_comable_user.class.human_attribute_name(:bill_address)
27
+ - if current_comable_user.bill_address
28
+ = render 'address', address: current_comable_user.bill_address
29
+ - else
30
+ .not_found
31
+ p
32
+ = Comable.t('not_found')
33
+
34
+ table.address
35
+ h2
36
+ = current_comable_user.class.human_attribute_name(:ship_address)
37
+ - if current_comable_user.ship_address
38
+ = render 'address', address: current_comable_user.ship_address
39
+ - else
40
+ .not_found
41
+ p
42
+ = Comable.t('not_found')
43
+
44
+ .other_addresses
45
+ h2
46
+ = Comable.t('other_addresses')
47
+ - current_comable_user.other_addresses.each do |address|
48
+ table.address
49
+ = render 'address', address: address
50
+
51
+ = form_for current_comable_user, as: :user, url: comable.addresses_user_url, method: :put do |f|
52
+ h2 新規登録
53
+ table.address
54
+ tbody
55
+ = f.fields_for :addresses, current_comable_user.addresses.build do |ff|
56
+ = render 'comable/shared/address_form', address: ff
57
+ .bt-box
58
+ = f.submit '変更する', class: 'btn-center'
@@ -0,0 +1,35 @@
1
+ #comable-customer
2
+ h2 マイページ:注文履歴
3
+ hr.line-bg/
4
+ .my-menu
5
+ p
6
+ span >>>
7
+ = link_to '注文履歴', comable.user_registration_path
8
+ p
9
+ span >>>
10
+ = link_to "メールアドレス・パスワード変更", comable.edit_user_path
11
+ p
12
+ span >>>
13
+ = link_to "アドレス帳編集", comable.addresses_user_path
14
+
15
+ .my-contents
16
+ - if current_comable_user.orders.empty?
17
+ = Comable.t('orders.empty')
18
+ - else
19
+ table.history
20
+ tboby
21
+ tr
22
+ th ご注文日時
23
+ th ご注文番号
24
+ th ご注文状態
25
+ - @orders.each do |order|
26
+ tr
27
+ td
28
+ = l order.completed_at.to_date, format: :long
29
+ td
30
+ = order.code
31
+ td
32
+ = order.state
33
+
34
+ ul.pageNav
35
+ = paginate @orders, theme: :comable_frontend
@@ -0,0 +1,12 @@
1
+ #wrap
2
+ h2 パスワード再発行
3
+ hr.line-bg
4
+ p.center
5
+ span.strong パスワードの再発行をいたしました
6
+ span
7
+ | 登録いただいたメールアドレス宛に、新しいパスワードを送信しました。
8
+ br
9
+ | メール記載のアドレスにアクセスし、パスワードの再発行を完了させてください。
10
+ a href="index.html" TOPへ戻る
11
+ /! end#wrap
12
+
@@ -0,0 +1,20 @@
1
+ #wrap
2
+ h2 パスワード再発行
3
+ hr.line-bg
4
+ p
5
+ | ウェブショップ用パスワードを忘れた方は、当ページより再度パスワードを設定いただけます。
6
+ br
7
+ | ご登録頂いている内容を入力して下さい。
8
+ = form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
9
+ = devise_error_messages!
10
+ table.forget
11
+ tr
12
+ th
13
+ span ※
14
+ = f.label :email
15
+ td
16
+ = f.email_field :email, autofocus: true, style: 'width:340px'
17
+ | (半角英数字)
18
+ .bt-box
19
+ = f.submit "送信する", :class=>'btn'
20
+ /! end#wrap
@@ -0,0 +1,45 @@
1
+ #wrap
2
+ h2 マイページ:メールアドレス・パスワード変更
3
+ hr.line-bg
4
+ = form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
5
+ = devise_error_messages!
6
+ .my-menu
7
+ p
8
+ span >>>
9
+ = link_to '注文履歴', comable.user_registration_path
10
+ p
11
+ span >>>
12
+ = link_to "メールアドレス・パスワード変更", comable.edit_user_path
13
+ p
14
+ span >>>
15
+ = link_to "アドレス帳編集", comable.addresses_user_path
16
+ .my-contents
17
+ table.account
18
+ tbody
19
+ tr
20
+ th メールアドレス
21
+ td
22
+ = f.email_field :email, autofocus: true, style: 'width:400px'
23
+ br
24
+ | ※メールアドレスを変更する場合は、新しいメールアドレスを入力してください。
25
+ tr
26
+ th パスワード
27
+ td
28
+ | 現在のパスワード
29
+ br
30
+ = f.password_field :current_password, autocomplete: "off", style: 'width:400px'
31
+ br
32
+ | 変更後のパスワード
33
+ br
34
+ = f.password_field :password, autocomplete: "off", style: 'width:400px'
35
+ br
36
+ | ▼ 確認のためもう一度入力してください
37
+ br
38
+ = f.password_field :password_confirmation, autocomplete: "off", style: 'width:400px'
39
+ br
40
+ span
41
+ | ※情報変更の際はパスワード入力が必須となります。
42
+ br
43
+ | ※パスワードを変更したい場合は、新しいパスワードを入力してください。
44
+ .bt-box
45
+ = f.submit "変更する", class: 'btn'
@@ -0,0 +1,30 @@
1
+ h2 新規会員登録
2
+ hr.line-bg/
3
+ = form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
4
+ = devise_error_messages!
5
+ .customer
6
+ .addresses
7
+ - if current_comable_user.errors.any?
8
+ .errors
9
+ ul
10
+ - current_comable_user.errors.full_messages.each do |full_message|
11
+ li = full_message
12
+ = form_for current_comable_user, as: :user, url: comable.user_path, method: :post do |f|
13
+ table.new-member
14
+ .tbody
15
+ = f.fields_for :addresses, current_comable_user.addresses.build do |ff|
16
+ = render 'comable/shared/address_form', address: ff
17
+ tr
18
+ th
19
+ span ※
20
+ = f.label :email
21
+ td
22
+ = f.email_field :email, autofocus: true, style: 'width:250px'
23
+ tr
24
+ th
25
+ span ※
26
+ = f.label :password
27
+ td
28
+ = f.password_field :password, autocomplete: "off", style: 'width:250px'
29
+ .btn-inner
30
+ = f.submit Comable.t('actions.create'), class: 'btn_new_member'
@@ -0,0 +1,32 @@
1
+ #wrap
2
+ h2 ログイン
3
+ hr.line-bg/
4
+ section
5
+ = form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
6
+ p.title 会員の方
7
+ table.login
8
+ tbody
9
+ tr
10
+ th 会員ID(メールアドレス)
11
+ td
12
+ = f.email_field :email, autofocus: true, style: 'width:300px'
13
+ |  半角英数字
14
+ tr
15
+ th
16
+ = f.label :password
17
+ td
18
+ = f.password_field :password, autocomplete: "off", style: 'width:300px'
19
+ |  半角英数字   
20
+ span
21
+ = link_to "パスワードをお忘れの方はこちら>>>", comable.new_user_password_path
22
+ tr
23
+ .bt-box
24
+ = f.submit "ログイン", class: 'btn'
25
+ p.title 初めてご利用の方(新規会員登録)
26
+ p.left
27
+ | 無料で新規会員登録ができます。
28
+ br
29
+ | 会員登録をすると便利なMyページをご利用いただけます。また、ログインするだけで、毎回お名前や住所などを入力することなくスムーズにお買い物をお楽しみいただけます。
30
+ .bt-box
31
+ = link_to "新規会員登録(無料)", comable.new_user_registration_path, class: 'btn'
32
+ /! end#wrap
@@ -0,0 +1,6 @@
1
+ .main
2
+ p.error
3
+ | お探しのページは見つかりませんでした。
4
+ br
5
+ br
6
+ = link_to "TOPページへ戻る", comable.root_path
@@ -0,0 +1,6 @@
1
+ .main
2
+ p.error
3
+ | お探しのページは見つかりませんでした。
4
+ br
5
+ br
6
+ = link_to "TOPページへ戻る", comable.root_path
@@ -0,0 +1,51 @@
1
+ doctype html
2
+ html lang="ja" xml:lang="ja" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:og="http://ogp.me/ns#"
3
+ head
4
+ meta content=("text/html; charset=utf-8") http-equiv="Content-Type" /
5
+ meta content="ja" http-equiv="Content-Language" /
6
+ meta content="text/css" http-equiv="Content-Style-Type" /
7
+ meta content="text/javascript" http-equiv="Content-Script-Type" /
8
+ meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /
9
+ meta content="no" http-equiv="imagetoolbar" /
10
+ meta content="no-cache" http-equiv="Pragma" /
11
+ meta content="no-cache" http-equiv="cache-control" /
12
+ meta content="description" name="description" /
13
+ meta content="keywords" name="keywords" /
14
+ title = current_store.name
15
+
16
+ - if current_store.meta_keywords.present?
17
+ meta name="keywords" content="#{current_store.meta_keywords}"
18
+
19
+ - if current_store.meta_description.present?
20
+ meta name="description" content="#{current_store.meta_description}"
21
+
22
+ = javascript_include_tag "comable/application"
23
+ = csrf_meta_tags
24
+
25
+ = stylesheet_link_tag "comable/application"
26
+
27
+ css:
28
+ .hidden { display: none; }
29
+ = stylesheet_link_tag "comable/common", media: "all"
30
+ = stylesheet_link_tag "comable/#{controller_name}", media: "all"
31
+
32
+ = render 'comable/shared/header'
33
+
34
+ - seach_and_side_flag = ['users','orders','carts'].include?(controller_name) || devise_controller?
35
+
36
+
37
+ - unless seach_and_side_flag
38
+
39
+ #wrap
40
+ main.container
41
+ - if controller_name == "home"
42
+ = image_tag "top.jpg"
43
+ - flash.each do |name, msg|
44
+ = content_tag(:div, msg, id: "flash_#{name}")
45
+
46
+ - unless seach_and_side_flag
47
+ = render 'comable/shared/sidebar'
48
+
49
+ == yield
50
+ = render 'comable/shared/footer'
51
+
@@ -0,0 +1,42 @@
1
+ doctype html
2
+ html lang="ja" xml:lang="ja" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:mixi="http://mixi-platform.com/ns#" xmlns:og="http://ogp.me/ns#"
3
+ head
4
+ meta content=("text/html; charset=utf-8") http-equiv="Content-Type" /
5
+ meta content="ja" http-equiv="Content-Language" /
6
+ meta content="text/css" http-equiv="Content-Style-Type" /
7
+ meta content="text/javascript" http-equiv="Content-Script-Type" /
8
+ meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" /
9
+ meta content="no" http-equiv="imagetoolbar" /
10
+ meta content="no-cache" http-equiv="Pragma" /
11
+ meta content="no-cache" http-equiv="cache-control" /
12
+ meta content="description" name="description" /
13
+ meta content="keywords" name="keywords" /
14
+ title = current_store.name
15
+
16
+ - if current_store.meta_keywords.present?
17
+ meta name="keywords" content="#{current_store.meta_keywords}"
18
+
19
+ - if current_store.meta_description.present?
20
+ meta name="description" content="#{current_store.meta_description}"
21
+
22
+ = javascript_include_tag "application"
23
+ = csrf_meta_tags
24
+
25
+ = stylesheet_link_tag "application"
26
+
27
+ css:
28
+ .hidden { display: none; }
29
+ = stylesheet_link_tag "comable/common", media: "all"
30
+ = stylesheet_link_tag "comable/#{controller_name}", media: "all"
31
+
32
+ = render 'comable/shared/header'
33
+
34
+ #wrap
35
+ main.container
36
+ - if controller_name == "home"
37
+ = image_tag "top.jpg"
38
+ - flash.each do |name, msg|
39
+ = content_tag(:div, msg, id: "flash_#{name}")
40
+ == yield
41
+ = render 'comable/shared/footer'
42
+
@@ -0,0 +1,2 @@
1
+ stylesheets_path = File.expand_path('../../../app/assets/stylesheets/comable', __FILE__)
2
+ Rails.application.config.assets.precompile += Dir.glob("#{stylesheets_path}/*").map { |f| "comable/#{File.basename(f, '.*')}.css" }
@@ -0,0 +1,11 @@
1
+ en:
2
+ enumerize:
3
+ comable/product:
4
+ order_by:
5
+ newly: 'Newly'
6
+ high_price: 'High price'
7
+ low_price: 'Low price'
8
+ filter_by_stocks:
9
+ all: 'all'
10
+ in_stock: 'In stocks'
11
+ out_of_stock: 'Out of stocks'
@@ -0,0 +1,11 @@
1
+ ja:
2
+ enumerize:
3
+ comable/product:
4
+ order_by:
5
+ newly: '新着順'
6
+ high_price: '価格が高い順'
7
+ low_price: '価格が低い順'
8
+ filter_by_stocks:
9
+ all: 'すべて'
10
+ in_stock: '在庫ありのみ'
11
+ out_of_stock: '在庫なしのみ'
@@ -0,0 +1,14 @@
1
+ module Comable
2
+ module Frontend
3
+ module Fashionable
4
+ class Engine < ::Rails::Engine
5
+ config.to_prepare do
6
+ # refs: http://edgeguides.rubyonrails.org/engines.html#overriding-models-and-controllers
7
+ Dir.glob(Engine.root.join('app/decorators/comable/*_decorator.rb')).each do |c|
8
+ Rails.configuration.cache_classes ? require_dependency(c) : load(c)
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,7 @@
1
+ require 'rails'
2
+ require 'sass-rails'
3
+ require 'coffee-rails'
4
+ require 'jquery-rails'
5
+
6
+ require 'comable/frontend'
7
+ require 'comable/frontend/fashionable/engine'
metadata ADDED
@@ -0,0 +1,233 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: comable-frontend-fashionable
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.0
5
+ platform: ruby
6
+ authors:
7
+ - sudamitsuhiro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-08-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: comable-frontend
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.6.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.6.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 3.2.0
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '5'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 3.2.0
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '5'
47
+ - !ruby/object:Gem::Dependency
48
+ name: sass-rails
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 5.0.0
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: '6'
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 5.0.0
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: '6'
67
+ - !ruby/object:Gem::Dependency
68
+ name: coffee-rails
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: 4.0.0
74
+ - - "<"
75
+ - !ruby/object:Gem::Version
76
+ version: '5'
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 4.0.0
84
+ - - "<"
85
+ - !ruby/object:Gem::Version
86
+ version: '5'
87
+ - !ruby/object:Gem::Dependency
88
+ name: jquery-rails
89
+ requirement: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ type: :runtime
95
+ prerelease: false
96
+ version_requirements: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ description: Provides fashionable frontend to the comable application
102
+ email:
103
+ - suda@appirits.com
104
+ executables: []
105
+ extensions: []
106
+ extra_rdoc_files: []
107
+ files:
108
+ - README.rdoc
109
+ - Rakefile
110
+ - app/assets/images/10822071_04_75_JP.gif
111
+ - app/assets/images/banner_QR.gif
112
+ - app/assets/images/banner_fb.gif
113
+ - app/assets/images/banner_member.gif
114
+ - app/assets/images/banner_mm.gif
115
+ - app/assets/images/banner_specialprice.jpg
116
+ - app/assets/images/banner_staffsnapblog.jpg
117
+ - app/assets/images/banner_tw.gif
118
+ - app/assets/images/bt_delete.png
119
+ - app/assets/images/bt_icon.png
120
+ - app/assets/images/bt_login.png
121
+ - app/assets/images/bt_member.png
122
+ - app/assets/images/cart.png
123
+ - app/assets/images/forget_icon.png
124
+ - app/assets/images/header_logo.gif
125
+ - app/assets/images/icon.png
126
+ - app/assets/images/line_bg.gif
127
+ - app/assets/images/logo.gif
128
+ - app/assets/images/logo.png
129
+ - app/assets/images/menu_arrow_down.png
130
+ - app/assets/images/menu_arrow_up.png
131
+ - app/assets/images/pagetop.gif
132
+ - app/assets/images/ranking_01.jpg
133
+ - app/assets/images/ranking_icon01.png
134
+ - app/assets/images/ranking_icon02.png
135
+ - app/assets/images/ranking_icon03.png
136
+ - app/assets/images/search.png
137
+ - app/assets/images/shoes_02.jpg
138
+ - app/assets/images/shoes_04.jpg
139
+ - app/assets/images/shoes_05.jpg
140
+ - app/assets/images/shoppingcart.png
141
+ - app/assets/images/special01.jpg
142
+ - app/assets/images/special02.jpg
143
+ - app/assets/images/special03.jpg
144
+ - app/assets/images/step_01.gif
145
+ - app/assets/images/step_01.png
146
+ - app/assets/images/step_02.gif
147
+ - app/assets/images/step_02.png
148
+ - app/assets/images/step_03.gif
149
+ - app/assets/images/step_03.png
150
+ - app/assets/images/step_04.gif
151
+ - app/assets/images/step_04.png
152
+ - app/assets/images/top.jpg
153
+ - app/assets/images/tops_01.jpg
154
+ - app/assets/images/tops_02.jpg
155
+ - app/assets/images/tops_04.jpg
156
+ - app/assets/javascripts/comable/application.js
157
+ - app/assets/javascripts/comable/base.js.coffee
158
+ - app/assets/javascripts/comable/products.js.coffee
159
+ - app/assets/stylesheets/comable/application.css
160
+ - app/assets/stylesheets/comable/carts.scss
161
+ - app/assets/stylesheets/comable/common.scss
162
+ - app/assets/stylesheets/comable/customers.scss
163
+ - app/assets/stylesheets/comable/detail.css
164
+ - app/assets/stylesheets/comable/footer-common.css
165
+ - app/assets/stylesheets/comable/home.css
166
+ - app/assets/stylesheets/comable/index.css
167
+ - app/assets/stylesheets/comable/orders.scss
168
+ - app/assets/stylesheets/comable/passwords.scss
169
+ - app/assets/stylesheets/comable/products.scss
170
+ - app/assets/stylesheets/comable/registrations.scss
171
+ - app/assets/stylesheets/comable/sessions.scss
172
+ - app/assets/stylesheets/comable/top.scss
173
+ - app/assets/stylesheets/comable/users.scss
174
+ - app/controllers/comable/application_controller.rb
175
+ - app/decorators/comable/product_decorator.rb
176
+ - app/decorators/comable/products_controller_decorator.rb
177
+ - app/views/comable/carts/show.html.slim
178
+ - app/views/comable/home/show.html.slim
179
+ - app/views/comable/orders/confirm.slim
180
+ - app/views/comable/orders/create.slim
181
+ - app/views/comable/orders/delivery.slim
182
+ - app/views/comable/orders/orderer.slim
183
+ - app/views/comable/orders/payment.slim
184
+ - app/views/comable/orders/shipment.slim
185
+ - app/views/comable/orders/signin.slim
186
+ - app/views/comable/products/index.html.slim
187
+ - app/views/comable/products/show.html.slim
188
+ - app/views/comable/shared/_address.slim
189
+ - app/views/comable/shared/_address_form.slim
190
+ - app/views/comable/shared/_footer.slim
191
+ - app/views/comable/shared/_header.slim
192
+ - app/views/comable/shared/_sidebar.slim
193
+ - app/views/comable/users/_address.slim
194
+ - app/views/comable/users/addresses.slim
195
+ - app/views/comable/users/show.slim
196
+ - app/views/devise/passwords/edit.slim
197
+ - app/views/devise/passwords/new.slim
198
+ - app/views/devise/registrations/edit.html.slim
199
+ - app/views/devise/registrations/new.html.slim
200
+ - app/views/devise/sessions/new.slim
201
+ - app/views/errors/error_404.slim
202
+ - app/views/errors/error_500.slim
203
+ - app/views/layouts/comable/application.slim
204
+ - app/views/layouts/comable/error.slim
205
+ - config/initializers/assets.rb
206
+ - config/locales/fashionable_en.yml
207
+ - config/locales/fashionable_ja.yml
208
+ - lib/comable/frontend/fashionable.rb
209
+ - lib/comable/frontend/fashionable/engine.rb
210
+ homepage: http://github.com/appirits/comable-frontend-fashionable
211
+ licenses: []
212
+ metadata: {}
213
+ post_install_message:
214
+ rdoc_options: []
215
+ require_paths:
216
+ - lib
217
+ required_ruby_version: !ruby/object:Gem::Requirement
218
+ requirements:
219
+ - - ">="
220
+ - !ruby/object:Gem::Version
221
+ version: '0'
222
+ required_rubygems_version: !ruby/object:Gem::Requirement
223
+ requirements:
224
+ - - ">="
225
+ - !ruby/object:Gem::Version
226
+ version: '0'
227
+ requirements: []
228
+ rubyforge_project:
229
+ rubygems_version: 2.4.5
230
+ signing_key:
231
+ specification_version: 4
232
+ summary: Provides fashionable frontend to the comable application
233
+ test_files: []