Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
action_sprout-facebook / action_sprout-facebook.gemspec
Size: Mime:
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'action_sprout/facebook/version'

Gem::Specification.new do |spec|
  spec.name          = "action_sprout-facebook"
  spec.version       = ActionSprout::Facebook::VERSION
  spec.authors       = ["Kyle Rader", "Amiel Martin"]
  spec.email         = ["kyle@kylerader.ninja", "amiel@actionsprout.com"]

  spec.summary       = %q{The ActionSprout Facebook client}
  spec.description   = %q{This gem provides methods for frequently used Facebook API queries made by ActionSprout services.}
  spec.homepage      = "https://github.com/ActionSprout/action_sprout-facebook"
  spec.license       = "MIT"

  spec.required_ruby_version = '>= 2.3.3'

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  root_files = %w[
    action_sprout-facebook.gemspec
    Rakefile
    README.md
    LICENSE.txt
  ]

  lib_files = Dir['lib/**/**'].to_a

  spec.files = root_files + lib_files

  spec.require_paths = ["lib"]

  spec.add_dependency "httparty", "~> 0.15.0"
  spec.add_dependency "action_sprout-method_object", "~> 0.1.0"
  spec.add_dependency "fast_stats", "~> 0.2.0"

  spec.add_runtime_dependency 'activesupport', '< 6.1', '>= 4.0'

end