Sha256: 15c93ec64d405f3e8a8b02098ed4a879e77f129ca0ef21b02c19a4d7bec6e527

Contents?: true

Size: 1.31 KB

Versions: 3

Compression:

Stored size: 1.31 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "restoready_theme"
  s.version     = RestoreadyTheme::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Derivery Damien"]
  s.email       = ["damien@restoready.com"]
  s.homepage    = "https://github.com/restoready/restoready-theme"
  s.summary     = %q{Command line tool for developing themes}
  s.description = %q{Command line tool to help with developing RestoReady 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.rubyforge_project = "restoready_theme"
  s.add_dependency('thor', '~> 0.14')
  s.add_dependency('faraday', '~> 0.9')
  s.add_dependency('json', '~> 1.8')
  s.add_dependency('mimemagic', '~> 0')
  s.add_dependency('filewatcher', '~> 0')
  s.add_dependency('launchy', '~> 2')

  s.add_development_dependency 'rake', '~> 0'
  s.add_development_dependency 'rspec', '~> 3'

  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

3 entries across 3 versions & 1 rubygems

Version Path
restoready_theme-1.0.1 restoready_theme.gemspec
restoready_theme-1.0.0 restoready_theme.gemspec
restoready_theme-0.0.2 restoready_theme.gemspec