Sha256: ece7801318cb024fdafc0fa2b891f25e51cb1ea4efa7f308f7a5979301d49090

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'society/version'

Gem::Specification.new do |spec|
  spec.name          = "society"
  spec.version       = Society::VERSION
  spec.authors       = ["Coraline Ada Ehmke", "Instructure"]
  spec.email         = ["coraline@instructure.com", "eng@instructure.com"]
  spec.summary       = %q{Social graph for Ruby objects}
  spec.description   = %q{Social graph for Ruby objects. Based on an original idea by Kerri Miller.}
  spec.homepage      = "https://github.com/CoralineAda/society"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.required_ruby_version = ">= 2.1"

  spec.add_dependency "activesupport"
  spec.add_dependency "analyst", ">= 1.0.0"
  spec.add_dependency "parser"
  spec.add_dependency "rainbow"
  spec.add_dependency "terminal-table"
  spec.add_dependency "thor"

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "simplecov"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "awesome_print"

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
society-1.7 society.gemspec
society-1.6 society.gemspec
society-1.5.2 society.gemspec
society-1.5.1 society.gemspec
society-1.5.0 society.gemspec
society-1.4.2 society.gemspec
society-1.4.1 society.gemspec
society-1.4.0 society.gemspec
society-1.3.0 society.gemspec