-
Notifications
You must be signed in to change notification settings - Fork 0
/
flowcommerce_spree.gemspec
36 lines (30 loc) · 1.41 KB
/
flowcommerce_spree.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
29
30
31
32
33
34
35
36
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'flowcommerce_spree/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'flowcommerce_spree'
s.version = FlowcommerceSpree::VERSION
s.authors = ['Aurel Branzeanu', 'Sebastian De Luca']
s.email = %w[a.branzeanu@datarockets.com sebastian.deluca@mejuri.com]
s.homepage = 'https://github.com/mejuri-inc/flowcommerce_spree'
s.summary = 'Integration of Spree with Flow API'
s.description = 'Integration of popular Rails/Spree store framework with e-commerce Flow API'
s.license = 'MIT'
s.required_ruby_version = '~> 2.3.0'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md', 'SPREE_FLOW.md']
s.require_path = 'lib'
s.add_dependency 'active_model_serializers', '0.10.2'
s.add_dependency 'activerecord-postgres-json', '>= 0.2.3'
s.add_dependency 'colorize'
s.add_dependency 'concurrent-ruby', '~> 1.0', '>= 1.1.7'
s.add_dependency 'flowcommerce'
s.add_dependency 'flowcommerce-reference'
s.add_dependency 'oj', '= 3.7.12'
s.add_dependency 'pg', '~> 0.21'
s.add_dependency 'spree_backend', '~> 2.3.0'
s.add_development_dependency 'factory_bot_rails', '~> 4.0'
s.add_development_dependency 'github_changelog_generator'
s.add_development_dependency 'rspec-rails', '~> 3.5'
end