forked from botanicus/cart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart.gemspec
executable file
·19 lines (16 loc) · 910 Bytes
/
cart.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env gem build
require "base64"
SPECIFICATION = ::Gem::Specification.new do |s|
s.name = "cart"
s.version = "0.0.5"
s.authors = ["Jakub Šťastný aka Botanicus"]
s.homepage = "http://github.com/botanicus/cart"
s.summary = "Cart is framework agnostic solution for shopping cart."
s.description = "Cart is framework agnostic solution for shopping cart. There are two existing imlementations. First is *Cart::Simple* which is just basic cart which can store only ID of products without any metadata. The second is *Cart::Advanced* and it is good when you have not just product, but also some metadata as size or color of product etc."
s.cert_chain = nil
s.email = Base64.decode64("c3Rhc3RueUAxMDFpZGVhcy5jeg==\n")
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
# s.required_ruby_version = ::Gem::Requirement.new(">= 1.9.1")
# s.rubyforge_project = "cart"
end