-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglysellin.gemspec
28 lines (23 loc) · 955 Bytes
/
glysellin.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "glysellin/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "glysellin"
s.version = Glysellin::VERSION
s.authors = ["Valentin Ballestrino"]
s.email = ["[email protected]"]
s.homepage = "http://www.glyph.fr"
s.summary = "Lightweight e-commerce"
s.description = "When your customer doesn't want e-commerce but actually you need products, orders and a payment gateway"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 3.2.0"
s.add_dependency "paperclip"
s.add_dependency "money"
s.add_dependency "activemerchant"
s.add_dependency "simple_form"
s.add_dependency "country_select"
s.add_dependency "state_machine"
s.add_dependency "friendly_id", "~> 4.0.9"
s.add_development_dependency "mysql2"
end