forked from spree-contrib/spree_social
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspree_social.gemspec
More file actions
21 lines (17 loc) · 808 Bytes
/
spree_social.gemspec
File metadata and controls
21 lines (17 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_social'
s.version = '1.3'
s.summary = 'Adds social network login services (OAuth) to Spree'
#s.description = 'Add (optional) gem description here'
s.required_ruby_version = '>= 1.8.7'
s.author = 'John Brien Dilts'
s.email = 'jdilts@railsdog.com'
s.homepage = 'http://spreecommerce.com'
s.files = Dir['CHANGELOG', 'README.md', 'LICENSE', 'lib/**/*', 'app/**/*', 'db/**/*', 'public/**/*']
s.require_path = 'lib'
s.requirements << 'none'
#s.add_dependency('spree_core', '>= 0.60.0.RC1')
s.add_dependency('spree_auth', '>= 0.60.1')
s.add_dependency('oa-oauth', ">= 0.3.0") # we don't need all of the omniauth family just the oAuth stuff'
end