Sha256: 822b554b97afc8596a13c713dc4fe1933327f1b2b49be50cb906dc6e6fffaaa6

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "posthaven_theme/version"

Gem::Specification.new do |s|
  s.name        = "posthaven_theme"
  s.version     = PosthavenTheme::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Brett Gibson"]
  s.email       = ["help@posthaven.com"]
  s.homepage    = "https://github.com/posthaven/posthaven_theme"
  s.summary     = %q{Command line tool for developing themes}
  s.description = %q{Command line tool to help with developing Posthaven themes. Provides simple commands to download, upload and delete files from a theme. Also includes the watch command to watch a directory and upload files as they change.}
  s.license     = 'MIT'

  s.required_ruby_version = '>= 2.0'

  s.rubyforge_project = "posthaven_theme"
  s.add_dependency('thor', '~> 0.16')
  s.add_dependency('httparty', '~> 0.13.0')
  s.add_dependency('json', '~> 1.8.0')
  s.add_dependency('mimemagic')
  s.add_dependency('filewatcher', '~> 1.0')

  s.add_development_dependency 'rake'
  s.add_development_dependency 'minitest', '>= 5.0.0'

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ['lib']
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
posthaven_theme-0.1.3 posthaven_theme.gemspec
posthaven_theme-0.1.2 posthaven_theme.gemspec