-
Notifications
You must be signed in to change notification settings - Fork 4
/
fracture.gemspec
26 lines (21 loc) · 1.13 KB
/
fracture.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- 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 = ["[email protected]"]
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