Sha256: e7421cfa8320195883b197433c355224ee92096636393bc6417f5da7c68d7ea0

Contents?: true

Size: 1.47 KB

Versions: 3

Compression:

Stored size: 1.47 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "pebblex"
  spec.version       = PebbleX::VERSION
  spec.authors       = ["Heiko Behrens"]
  spec.email         = ["HeikoBehrens@gmx.de"]
  spec.summary       = %q{Enables Pebble development with Xcode and AppCode.}
  spec.description   = %q{Creates an Xcode project from a pebble project that contains the needed search paths, resources and .c files to start right away. Each time you build your watch app from the IDE, all warnings and errors of the underlying ´pebble build` command will be presented right in the editor. With AppCode you can even build, install the .pbw to your watch, and look at the live logs as a one-step action directly from your IDE!}
  spec.homepage      = "https://github.com/hbehrens/pebblex"
  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.add_runtime_dependency(%q<thor>, ["~> 0.18.1"])
  spec.add_runtime_dependency(%q<xcodeproj>, ["~> 0.14.1"])

  spec.add_development_dependency "bundler", "~> 1.5"
  spec.add_development_dependency "rspec", "~> 2.14"
  spec.add_development_dependency "rspec-mocks", "~> 2.14"
  spec.add_development_dependency "rake"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pebblex-0.0.7 pebblex.gemspec
pebblex-0.0.6 pebblex.gemspec
pebblex-0.0.5 pebblex.gemspec