specify 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +35 -0
- data/Rakefile +3 -0
- data/lib/specify/version.rb +3 -0
- data/lib/specify.rb +4 -0
- data/specify.gemspec +42 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6bd52074c94486ea349b2b8a64811cbe1407ffcc
|
4
|
+
data.tar.gz: 4ca92a95cf2169533e5aed1abee1afd6fa4d01a6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c0ce369f131e8fbfcee0a790a9e803345935fa54cc0c0486a9f7ffb37ebb00c35c682c735ddd00067fc7610a0ab02d5ced9175792ef8dab4004de8e287f98aac
|
7
|
+
data.tar.gz: 50bde5b576fb61613173952fc1b2bd90d868832b784354b71fa70e988243e88e6f39153ca45c0643fc205e0099667fd7c22d9cfb9df2802cb90854c97a3c41b8
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Jeff Nyman
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# Specify
|
2
|
+
|
3
|
+
Specify parses test specifications written in Gherkin format and runs them via RSpec.
|
4
|
+
|
5
|
+
The goal of Specify is to separate the concepts behind tools like Cucumber and Lucid from their implementation. The latter has been weak in some cases but the former has been strong.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'specify'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install specify
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
Further details on usage will be coming as Specify evolves.
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
To work on Specify:
|
30
|
+
|
31
|
+
1. [Fork the project](http://gun.io/blog/how-to-github-fork-branch-and-pull-request/).
|
32
|
+
2. Create a feature branch. (`git checkout -b my-new-feature`)
|
33
|
+
3. Commit your changes. (`git commit -am 'new feature'`)
|
34
|
+
4. Push the branch. (`git push origin my-new-feature`)
|
35
|
+
5. Create a new [pull request](https://help.github.com/articles/using-pull-requests).
|
data/Rakefile
ADDED
data/lib/specify.rb
ADDED
data/specify.gemspec
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'specify/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'specify'
|
8
|
+
spec.version = Specify::VERSION
|
9
|
+
spec.authors = ['Jeff Nyman']
|
10
|
+
spec.email = ['jeffnyman@gmail.com']
|
11
|
+
spec.summary = %q{Description Language Specification and Execution Engine}
|
12
|
+
spec.description = %q{
|
13
|
+
Specify is a test framework that is designed to treat testing as a
|
14
|
+
design activity by allowing requirements to be defined as tests.
|
15
|
+
Those tests can then be executed via an automation layer. This is
|
16
|
+
the basis of creating executable specifications.
|
17
|
+
}
|
18
|
+
spec.homepage = 'https://github.com/jnyman/specify'
|
19
|
+
spec.license = 'MIT'
|
20
|
+
|
21
|
+
spec.files = `git ls-files -z`.split("\x0")
|
22
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
23
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
24
|
+
spec.require_paths = %w(lib)
|
25
|
+
|
26
|
+
spec.required_ruby_version = '>= 2.0.0'
|
27
|
+
spec.required_rubygems_version = '>= 1.8.29'
|
28
|
+
|
29
|
+
spec.add_development_dependency 'bundler', '~> 1.7'
|
30
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
31
|
+
|
32
|
+
spec.add_runtime_dependency 'gherkin', '~> 2.12'
|
33
|
+
spec.add_runtime_dependency 'rspec', '~> 3.0'
|
34
|
+
|
35
|
+
spec.post_install_message = %{
|
36
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
37
|
+
|
38
|
+
Specify #{Specify::VERSION} has been installed.
|
39
|
+
|
40
|
+
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
41
|
+
}
|
42
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: specify
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeff Nyman
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-10-04 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: gherkin
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.12'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.12'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
description: "\n Specify is a test framework that is designed to treat testing
|
70
|
+
as a\n design activity by allowing requirements to be defined as tests.\n Those
|
71
|
+
tests can then be executed via an automation layer. This is\n the basis of creating
|
72
|
+
executable specifications.\n "
|
73
|
+
email:
|
74
|
+
- jeffnyman@gmail.com
|
75
|
+
executables: []
|
76
|
+
extensions: []
|
77
|
+
extra_rdoc_files: []
|
78
|
+
files:
|
79
|
+
- ".gitignore"
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- lib/specify.rb
|
85
|
+
- lib/specify/version.rb
|
86
|
+
- specify.gemspec
|
87
|
+
homepage: https://github.com/jnyman/specify
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata: {}
|
91
|
+
post_install_message: "\n(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)\n\n
|
92
|
+
\ Specify 0.0.1 has been installed.\n\n(::) (::) (::) (::) (::) (::) (::) (::) (::)
|
93
|
+
(::) (::) (::)\n "
|
94
|
+
rdoc_options: []
|
95
|
+
require_paths:
|
96
|
+
- lib
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 2.0.0
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 1.8.29
|
107
|
+
requirements: []
|
108
|
+
rubyforge_project:
|
109
|
+
rubygems_version: 2.2.2
|
110
|
+
signing_key:
|
111
|
+
specification_version: 4
|
112
|
+
summary: Description Language Specification and Execution Engine
|
113
|
+
test_files: []
|