Sha256: a82152e292912e37feb7ab27d8f5f3dda74fd40510f88201c2e0032fb4dbd61a
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "haravan_theme/version" Gem::Specification.new do |s| s.name = "haravan_theme" s.version = HaravanTheme::VERSION s.platform = Gem::Platform::RUBY s.authors = ["John Duff"] s.email = ["john.duff@shopify.com"] s.homepage = "https://github.com/Haravan/haravan_theme" s.summary = %q{Command line tool for developing themes} s.description = %q{Command line tool to help with developing Haravan 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 = "haravan_theme" s.add_dependency('thor', '>= 0.14.4') s.add_dependency('httparty', '~> 0.13.0') s.add_dependency('json', '~> 1.8.0') s.add_dependency('mimemagic') s.add_dependency('filewatcher') s.add_dependency('launchy') s.add_development_dependency 'rake' s.add_development_dependency 'minitest', '>= 5.0.0' s.add_development_dependency 'webmock' s.add_development_dependency 'vcr' 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 |
---|---|
haravan_theme-0.0.26 | haravan_theme.gemspec |
haravan_theme-0.0.25 | haravan_theme.gemspec |