Sha256: ff3db3834ae0b7564ca4eebd6506c2c4568b8c75c86fe646cdda5cd8d672e3fa

Contents?: true

Size: 1008 Bytes

Versions: 6

Compression:

Stored size: 1008 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "cc-terminal"
  spec.version       = Terminal::VERSION
  spec.authors       = ["Timor Tsentsiper"]
  spec.email         = ["timor@codecademy.com"]
  spec.description   = %q{Simple gem to interact with the Terminal.com API influenced by the twitter API gem.}
  spec.summary       = %q{Exposes some of the basic functionality of the Terminal.com API, as documented here https://www.terminal.com/api/docs}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  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.add_dependency 'json', '~> 1.8'
  spec.add_dependency "faraday", '~> 0.9.0'
  spec.required_ruby_version = '>= 2.0'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cc-terminal-0.0.8 terminal.gemspec
cc-terminal-0.0.7 terminal.gemspec
cc-terminal-0.0.6 terminal.gemspec
cc-terminal-0.0.5 terminal.gemspec
cc-terminal-0.0.4 terminal.gemspec
cc-terminal-0.0.3 terminal.gemspec