Sha256: bf3981a117069184cc38304aed8385f2c257b1a8608f63f12d9557100a6958e8
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "fracture/version" Gem::Specification.new do |s| s.name = "fracture" s.version = FractureVersion::VERSION s.authors = ["Nigel Rausch"] s.email = ["nigelr@brisbanerails.com"] s.homepage = "" s.summary = %q{Unified View testing within Views or Controllers for RSpec} s.description = %q{Fracture allows you to define and group view text or selectors in one place (at the top of a spec) and then refer to them with labels. This prevents issues when checking for existence and non existence of text/selectors if the views value changes only one spec will fail, using fracture you will update both instances} s.rubyforge_project = "fracture" 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"] s.add_runtime_dependency "nokogiri" s.add_runtime_dependency "inflections" s.add_runtime_dependency "rspec" s.add_development_dependency "rake" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fracture-0.12.0 | fracture.gemspec |
fracture-0.11.4 | fracture.gemspec |
fracture-0.11.3 | fracture.gemspec |
fracture-0.11.2 | fracture.gemspec |