comable-sample 0.6.0
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +97 -0
- data/db/samples/addresses.rb +21 -0
- data/db/samples/categories.rb +1 -0
- data/db/samples/images.rb +46 -0
- data/db/samples/images/fur_gloves.jpg +0 -0
- data/db/samples/images/girly_coat.jpg +0 -0
- data/db/samples/images/leather_boots.jpg +0 -0
- data/db/samples/images/leather_boots_back.jpg +0 -0
- data/db/samples/images/leather_boots_front.jpg +0 -0
- data/db/samples/images/suede_dress.jpg +0 -0
- data/db/samples/images/suede_dress_full.jpg +0 -0
- data/db/samples/orders.rb +51 -0
- data/db/samples/payment_methods.rb +6 -0
- data/db/samples/payments.rb +11 -0
- data/db/samples/products.rb +33 -0
- data/db/samples/shipment_methods.rb +4 -0
- data/db/samples/shipments.rb +10 -0
- data/db/samples/stocks.rb +78 -0
- data/lib/comable/sample.rb +44 -0
- data/lib/comable/sample/address.rb +23 -0
- data/lib/comable/sample/engine.rb +6 -0
- data/lib/comable/sample/name.rb +15 -0
- data/lib/comable/sample/phone_number.rb +11 -0
- data/lib/tasks/sample.rake +6 -0
- metadata +98 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 049d710cbe50d515b34e12a35c04947f119490dc
|
4
|
+
data.tar.gz: 4c54a4581270f9749db86649c6ffbe538fb24f39
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a7e63b0cb95b4956266e7ec3f55363bafae4a712bb817980b0ed3588d1ce5f122b9aaea6928f936bf5e7f2349e91920b0a200398808050115880a3503b0717cc
|
7
|
+
data.tar.gz: cf3028ef1fc413877b496b1aad372555673029b4618be2850bffc8b6a7def71bf6508985f005360de91b848a3be860affe0ad0016612fb9f439f427540bfdbef
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2015 YOSHIDA Hiroki
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'Comable'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
14
|
+
end
|
15
|
+
|
16
|
+
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
|
17
|
+
load 'rails/tasks/engine.rake'
|
18
|
+
|
19
|
+
def command(string)
|
20
|
+
puts string
|
21
|
+
system string
|
22
|
+
end
|
23
|
+
|
24
|
+
if File.exist?('comable.gemspec')
|
25
|
+
$LOAD_PATH.unshift File.expand_path('..', __FILE__)
|
26
|
+
require 'tasks/release'
|
27
|
+
|
28
|
+
namespace :app do
|
29
|
+
namespace :spec do
|
30
|
+
desc 'Run the code examples'
|
31
|
+
RSpec::Core::RakeTask.new(:all) do |t|
|
32
|
+
FRAMEWORKS.each do |framework|
|
33
|
+
t.pattern << ",#{framework}/spec/**{,/*/**}/*_spec.rb"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
FRAMEWORKS.each do |framework|
|
38
|
+
desc "Run the code examples in #{framework}/spec"
|
39
|
+
RSpec::Core::RakeTask.new(framework) do |t|
|
40
|
+
t.pattern = "../#{framework}/spec/**{,/*/**}/*_spec.rb"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
namespace :db do
|
47
|
+
task 'migrate' => 'app:db:migrate'
|
48
|
+
task 'app:db:migrate' => 'migrate:all'
|
49
|
+
|
50
|
+
namespace :migrate do
|
51
|
+
task :all do
|
52
|
+
FRAMEWORKS.each do |framework|
|
53
|
+
command "cd #{framework} && test -d db/migrate && bundle exec rake db:migrate RAILS_ENV=#{Rails.env}"
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
namespace :migrate do
|
59
|
+
task 'reset' => 'app:db:migrate:reset'
|
60
|
+
task 'app:db:migrate:reset' => 'app:db:migrate'
|
61
|
+
task 'app:db:migrate' => 'reset:all'
|
62
|
+
|
63
|
+
namespace :reset do
|
64
|
+
task :all do
|
65
|
+
command "bundle exec rake db:drop db:create RAILS_ENV=#{Rails.env}"
|
66
|
+
Rake::Task['db:migrate'].invoke
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
task default: ['app:spec:all', 'rubocop', 'brakeman:all']
|
73
|
+
else
|
74
|
+
task default: ['app:spec', 'rubocop', 'brakeman']
|
75
|
+
end
|
76
|
+
|
77
|
+
Bundler::GemHelper.install_tasks
|
78
|
+
|
79
|
+
# from https://github.com/rspec/rspec-rails/issues/936
|
80
|
+
task 'test:prepare'
|
81
|
+
|
82
|
+
task :rubocop do
|
83
|
+
sh 'rubocop'
|
84
|
+
end
|
85
|
+
|
86
|
+
task :brakeman do
|
87
|
+
sh 'brakeman --exit-on-warn --ignore-config .brakeman.ignore'
|
88
|
+
end
|
89
|
+
|
90
|
+
namespace :brakeman do
|
91
|
+
task :all do
|
92
|
+
FRAMEWORKS.each do |framework|
|
93
|
+
next unless File.directory?("#{framework}/app")
|
94
|
+
sh "brakeman --exit-on-warn --ignore-config .brakeman.ignore #{framework}"
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Billing address
|
2
|
+
Comable::Address.create!(
|
3
|
+
family_name: Comable::Sample::Name.family_name,
|
4
|
+
first_name: Comable::Sample::Name.first_name,
|
5
|
+
zip_code: Comable::Sample::Address.zip_code,
|
6
|
+
state_name: Comable::Sample::Address.state_name,
|
7
|
+
city: Comable::Sample::Address.city,
|
8
|
+
detail: Comable::Sample::Address.detail,
|
9
|
+
phone_number: Comable::Sample::PhoneNumber.phone_number
|
10
|
+
)
|
11
|
+
|
12
|
+
# Shipping address
|
13
|
+
Comable::Address.create!(
|
14
|
+
family_name: Comable::Sample::Name.family_name,
|
15
|
+
first_name: Comable::Sample::Name.first_name,
|
16
|
+
zip_code: Comable::Sample::Address.zip_code,
|
17
|
+
state_name: Comable::Sample::Address.state_name,
|
18
|
+
city: Comable::Sample::Address.city,
|
19
|
+
detail: Comable::Sample::Address.detail,
|
20
|
+
phone_number: Comable::Sample::PhoneNumber.phone_number
|
21
|
+
)
|
@@ -0,0 +1 @@
|
|
1
|
+
Comable::Category.create!(name: Comable::Sample.t(:clothing))
|
@@ -0,0 +1,46 @@
|
|
1
|
+
Comable::Sample.import('products')
|
2
|
+
|
3
|
+
suede_dress = Comable::Product.where(name: Comable::Sample.t(:suede_dress)).first!
|
4
|
+
girly_coat = Comable::Product.where(name: Comable::Sample.t(:girly_coat)).first!
|
5
|
+
fur_gloves = Comable::Product.where(name: Comable::Sample.t(:fur_gloves)).first!
|
6
|
+
leather_boots = Comable::Product.where(name: Comable::Sample.t(:leather_boots)).first!
|
7
|
+
|
8
|
+
def image(name, suffix: '.jpg')
|
9
|
+
image_path = File.join(File.dirname(__FILE__), 'images', name + suffix)
|
10
|
+
File.open(image_path)
|
11
|
+
end
|
12
|
+
|
13
|
+
images_attributes = [
|
14
|
+
{
|
15
|
+
product: suede_dress,
|
16
|
+
file: image('suede_dress')
|
17
|
+
},
|
18
|
+
{
|
19
|
+
product: suede_dress,
|
20
|
+
file: image('suede_dress_full')
|
21
|
+
},
|
22
|
+
{
|
23
|
+
product: girly_coat,
|
24
|
+
file: image('girly_coat')
|
25
|
+
},
|
26
|
+
{
|
27
|
+
product: fur_gloves,
|
28
|
+
file: image('fur_gloves')
|
29
|
+
},
|
30
|
+
{
|
31
|
+
product: leather_boots,
|
32
|
+
file: image('leather_boots')
|
33
|
+
},
|
34
|
+
{
|
35
|
+
product: leather_boots,
|
36
|
+
file: image('leather_boots_front')
|
37
|
+
},
|
38
|
+
{
|
39
|
+
product: leather_boots,
|
40
|
+
file: image('leather_boots_back')
|
41
|
+
}
|
42
|
+
]
|
43
|
+
|
44
|
+
images_attributes.each do |attributes|
|
45
|
+
Comable::Image.create!(attributes)
|
46
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,51 @@
|
|
1
|
+
Comable::Sample.import('products')
|
2
|
+
Comable::Sample.import('stocks')
|
3
|
+
Comable::Sample.import('addresses')
|
4
|
+
|
5
|
+
bill_address = Comable::Address.first
|
6
|
+
ship_address = Comable::Address.last
|
7
|
+
suede_dress = Comable::Product.where(name: Comable::Sample.t(:suede_dress)).first!
|
8
|
+
girly_coat = Comable::Product.where(name: Comable::Sample.t(:girly_coat)).first!
|
9
|
+
|
10
|
+
orders_attributes = [
|
11
|
+
{
|
12
|
+
email: 'comable@example.com',
|
13
|
+
bill_address: bill_address,
|
14
|
+
ship_address: ship_address,
|
15
|
+
shipment_fee: 300,
|
16
|
+
payment_fee: 200,
|
17
|
+
total_price: 500 + suede_dress.price,
|
18
|
+
order_items_attributes: [
|
19
|
+
{
|
20
|
+
stock: suede_dress.stocks.first,
|
21
|
+
quantity: 1
|
22
|
+
}
|
23
|
+
]
|
24
|
+
},
|
25
|
+
{
|
26
|
+
email: 'comable@example.com',
|
27
|
+
bill_address: bill_address,
|
28
|
+
ship_address: ship_address,
|
29
|
+
shipment_fee: 300,
|
30
|
+
payment_fee: 200,
|
31
|
+
total_price: 500 + (suede_dress.price * 2) + (girly_coat.price * 3),
|
32
|
+
order_items_attributes: [
|
33
|
+
{
|
34
|
+
stock: suede_dress.stocks.first,
|
35
|
+
quantity: 2
|
36
|
+
},
|
37
|
+
{
|
38
|
+
stock: girly_coat.stocks.first,
|
39
|
+
quantity: 3
|
40
|
+
}
|
41
|
+
]
|
42
|
+
}
|
43
|
+
]
|
44
|
+
|
45
|
+
orders_attributes.each do |attributes|
|
46
|
+
order = Comable::Order.create!(attributes)
|
47
|
+
order.send(:generate_code)
|
48
|
+
order.state = 'completed'
|
49
|
+
order.completed_at = Time.now
|
50
|
+
order.save!
|
51
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
Comable::Sample.import('orders')
|
2
|
+
Comable::Sample.import('payment_methods')
|
3
|
+
|
4
|
+
payment_method = Comable::PaymentMethod.first
|
5
|
+
|
6
|
+
Comable::Order.complete.each do |order|
|
7
|
+
payment = order.create_payment!(payment_method: payment_method, fee: payment_method.fee)
|
8
|
+
payment.state = 'completed'
|
9
|
+
payment.completed_at = Time.now
|
10
|
+
payment.save!
|
11
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
Comable::Sample.import('categories')
|
2
|
+
|
3
|
+
clothing = Comable::Category.where(name: Comable::Sample.t(:clothing)).first!
|
4
|
+
|
5
|
+
products_attributes = [
|
6
|
+
{
|
7
|
+
name: Comable::Sample.t(:suede_dress),
|
8
|
+
price: 6_990,
|
9
|
+
categories: [clothing]
|
10
|
+
},
|
11
|
+
{
|
12
|
+
name: Comable::Sample.t(:girly_coat),
|
13
|
+
price: 9_000,
|
14
|
+
categories: [clothing]
|
15
|
+
},
|
16
|
+
{
|
17
|
+
name: Comable::Sample.t(:fur_gloves),
|
18
|
+
price: 5_292,
|
19
|
+
categories: [clothing]
|
20
|
+
},
|
21
|
+
{
|
22
|
+
name: Comable::Sample.t(:leather_boots),
|
23
|
+
price: 28_080,
|
24
|
+
categories: [clothing]
|
25
|
+
}
|
26
|
+
]
|
27
|
+
|
28
|
+
next_id = (Comable::Product.maximum(:id) || 0).next
|
29
|
+
|
30
|
+
products_attributes.each.with_index(next_id) do |attributes, index|
|
31
|
+
code = format('%05d', index)
|
32
|
+
Comable::Product.create!(attributes.merge(code: code))
|
33
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
Comable::Sample.import('orders')
|
2
|
+
Comable::Sample.import('shipment_methods')
|
3
|
+
|
4
|
+
shipment_method = Comable::ShipmentMethod.first
|
5
|
+
|
6
|
+
Comable::Order.complete.each do |order|
|
7
|
+
shipment = order.create_shipment!(shipment_method: shipment_method, fee: shipment_method.fee)
|
8
|
+
shipment.state = 'ready'
|
9
|
+
shipment.save!
|
10
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
Comable::Sample.import('products')
|
2
|
+
|
3
|
+
suede_dress = Comable::Product.where(name: Comable::Sample.t(:suede_dress)).first!
|
4
|
+
girly_coat = Comable::Product.where(name: Comable::Sample.t(:girly_coat)).first!
|
5
|
+
fur_gloves = Comable::Product.where(name: Comable::Sample.t(:fur_gloves)).first!
|
6
|
+
leather_boots = Comable::Product.where(name: Comable::Sample.t(:leather_boots)).first!
|
7
|
+
|
8
|
+
suede_dress.update_attributes!(sku_h_item_name: Comable::Sample.t(:size), sku_v_item_name: Comable::Sample.t(:color))
|
9
|
+
girly_coat.update_attributes!(sku_h_item_name: Comable::Sample.t(:size), sku_v_item_name: Comable::Sample.t(:color))
|
10
|
+
leather_boots.update_attributes!(sku_h_item_name: Comable::Sample.t(:size))
|
11
|
+
|
12
|
+
default_stock_attributes = {
|
13
|
+
quantity: 10
|
14
|
+
}
|
15
|
+
|
16
|
+
stocks_attributes = [
|
17
|
+
{
|
18
|
+
product: suede_dress,
|
19
|
+
code: "#{suede_dress.code}-SN",
|
20
|
+
sku_h_choice_name: 'S',
|
21
|
+
sku_v_choice_name: Comable::Sample.t(:navy)
|
22
|
+
},
|
23
|
+
{
|
24
|
+
product: suede_dress,
|
25
|
+
code: "#{suede_dress.code}-MN",
|
26
|
+
sku_h_choice_name: 'M',
|
27
|
+
sku_v_choice_name: Comable::Sample.t(:navy)
|
28
|
+
},
|
29
|
+
{
|
30
|
+
product: girly_coat,
|
31
|
+
code: "#{girly_coat.code}-SB",
|
32
|
+
sku_h_choice_name: 'S',
|
33
|
+
sku_v_choice_name: Comable::Sample.t(:beige)
|
34
|
+
},
|
35
|
+
{
|
36
|
+
product: girly_coat,
|
37
|
+
code: "#{girly_coat.code}-MB",
|
38
|
+
sku_h_choice_name: 'M',
|
39
|
+
sku_v_choice_name: Comable::Sample.t(:beige)
|
40
|
+
},
|
41
|
+
{
|
42
|
+
product: girly_coat,
|
43
|
+
code: "#{girly_coat.code}-SN",
|
44
|
+
sku_h_choice_name: 'S',
|
45
|
+
sku_v_choice_name: Comable::Sample.t(:navy)
|
46
|
+
},
|
47
|
+
{
|
48
|
+
product: girly_coat,
|
49
|
+
code: "#{girly_coat.code}-MN",
|
50
|
+
sku_h_choice_name: 'M',
|
51
|
+
sku_v_choice_name: Comable::Sample.t(:navy)
|
52
|
+
},
|
53
|
+
{
|
54
|
+
product: fur_gloves,
|
55
|
+
code: fur_gloves.code
|
56
|
+
},
|
57
|
+
{
|
58
|
+
product: leather_boots,
|
59
|
+
code: "#{leather_boots.code}-S",
|
60
|
+
sku_h_choice_name: 'S',
|
61
|
+
quantity: 0
|
62
|
+
},
|
63
|
+
{
|
64
|
+
product: leather_boots,
|
65
|
+
code: "#{leather_boots.code}-M",
|
66
|
+
sku_h_choice_name: 'M',
|
67
|
+
quantity: 1
|
68
|
+
},
|
69
|
+
{
|
70
|
+
product: leather_boots,
|
71
|
+
code: "#{leather_boots.code}-L",
|
72
|
+
sku_h_choice_name: 'L'
|
73
|
+
}
|
74
|
+
]
|
75
|
+
|
76
|
+
stocks_attributes.each do |attributes|
|
77
|
+
Comable::Stock.create!(default_stock_attributes.merge(attributes))
|
78
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'ffaker'
|
2
|
+
|
3
|
+
require 'comable/core'
|
4
|
+
|
5
|
+
require 'comable/sample/engine'
|
6
|
+
require 'comable/sample/address'
|
7
|
+
require 'comable/sample/name'
|
8
|
+
require 'comable/sample/phone_number'
|
9
|
+
|
10
|
+
module Comable
|
11
|
+
module Sample
|
12
|
+
class << self
|
13
|
+
def translate(key, options = {})
|
14
|
+
Comable.translate("sample.#{key}", options)
|
15
|
+
end
|
16
|
+
|
17
|
+
alias_method :t, :translate
|
18
|
+
|
19
|
+
def import_all
|
20
|
+
definitions.each do |definition|
|
21
|
+
import(definition)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def import(filename)
|
26
|
+
filepath = Rails.root.join("db/samples/#{filename}.rb")
|
27
|
+
filepath = "#{default_dir}/#{filename}.rb" unless File.exist?(filepath)
|
28
|
+
require File.expand_path(filepath)
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def definitions
|
34
|
+
Dir["#{default_dir}/*.rb"].map do |filepath|
|
35
|
+
File.basename(filepath, '.rb')
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def default_dir
|
40
|
+
"#{File.dirname(__FILE__)}/../../db/samples"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Comable
|
2
|
+
module Sample
|
3
|
+
module Address
|
4
|
+
class << self
|
5
|
+
def zip_code
|
6
|
+
FFaker::AddressUS.zip_code
|
7
|
+
end
|
8
|
+
|
9
|
+
def state_name
|
10
|
+
FFaker::AddressUS.state
|
11
|
+
end
|
12
|
+
|
13
|
+
def city
|
14
|
+
FFaker::AddressUS.city
|
15
|
+
end
|
16
|
+
|
17
|
+
def detail
|
18
|
+
FFaker::AddressUS.street_address
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: comable-sample
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.6.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- YOSHIDA Hiroki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: comable-core
|
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: ffaker
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.0.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.0.0
|
41
|
+
description: Provide sample data for Comable.
|
42
|
+
email:
|
43
|
+
- hyoshida@appirits.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- MIT-LICENSE
|
49
|
+
- Rakefile
|
50
|
+
- db/samples/addresses.rb
|
51
|
+
- db/samples/categories.rb
|
52
|
+
- db/samples/images.rb
|
53
|
+
- db/samples/images/fur_gloves.jpg
|
54
|
+
- db/samples/images/girly_coat.jpg
|
55
|
+
- db/samples/images/leather_boots.jpg
|
56
|
+
- db/samples/images/leather_boots_back.jpg
|
57
|
+
- db/samples/images/leather_boots_front.jpg
|
58
|
+
- db/samples/images/suede_dress.jpg
|
59
|
+
- db/samples/images/suede_dress_full.jpg
|
60
|
+
- db/samples/orders.rb
|
61
|
+
- db/samples/payment_methods.rb
|
62
|
+
- db/samples/payments.rb
|
63
|
+
- db/samples/products.rb
|
64
|
+
- db/samples/shipment_methods.rb
|
65
|
+
- db/samples/shipments.rb
|
66
|
+
- db/samples/stocks.rb
|
67
|
+
- lib/comable/sample.rb
|
68
|
+
- lib/comable/sample/address.rb
|
69
|
+
- lib/comable/sample/engine.rb
|
70
|
+
- lib/comable/sample/name.rb
|
71
|
+
- lib/comable/sample/phone_number.rb
|
72
|
+
- lib/tasks/sample.rake
|
73
|
+
homepage: https://github.com/appirits/comable#comable
|
74
|
+
licenses:
|
75
|
+
- MIT
|
76
|
+
metadata: {}
|
77
|
+
post_install_message:
|
78
|
+
rdoc_options: []
|
79
|
+
require_paths:
|
80
|
+
- lib
|
81
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 2.2.2
|
94
|
+
signing_key:
|
95
|
+
specification_version: 4
|
96
|
+
summary: Provide sample data for Comable.
|
97
|
+
test_files: []
|
98
|
+
has_rdoc:
|