Sha256: 4ff69b42239e54541b2b0b17b2081828a01063d829471c2cf9dbacd3f1692f0d

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

require 'rubygems'
require 'bundler'
require "rspec/core/rake_task"
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "storyboardlint"
  gem.homepage = "https://github.com/jfahrenkrug/StoryboardLint"
  gem.license = "MIT"
  gem.summary = %Q{A lint tool for UIStoryboards to find wrong classes and wrong storyboard/segue/reuse identifiers}
  gem.description = %Q{It's a pain to to keep identifier strings in your UIStoryboard and in your source code in sync. This tool helps you to do just that.}
  gem.email = "johannes@springenwerk.com"
  gem.authors = ["Johannes Fahrenkrug"]
  
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

RSpec::Core::RakeTask.new

task :test => :spec
task :default => :spec

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
storyboardlint-0.2.2 Rakefile
storyboardlint-0.2.1 Rakefile
storyboardlint-0.2.0 Rakefile