guard-phpspec 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/guard/phpspec.rb +22 -0
- metadata +44 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 450cb386b75076b8fb4f70ff0c4709b2f6dd48e0
|
|
4
|
+
data.tar.gz: eef0b03766b9bba3efe173778c25201ac7963f1e
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 54c43b54051a0b11b96e919ea3b3237afc7720214e7cb4cf9f246e1460676cb7d05116ed8c09119dee8a1d808cd6c64e59146df12282e0ed296b015f9c9b1c4b
|
|
7
|
+
data.tar.gz: afdde536505eaff553e26a5c32ab749f65e964b951e8bed4f6184c61ec5ee75f0c82d178b79d1ff01ec9164b31b8835603f4a78f272574b111f8a340575a0149
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'guard'
|
|
2
|
+
require 'guard/guard'
|
|
3
|
+
|
|
4
|
+
module Guard
|
|
5
|
+
class PHPSpec < Guard
|
|
6
|
+
def initialize
|
|
7
|
+
raise Exception.new('guard-phpspec is work in progress. not ready for use at the moment')
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
#autoload :Inspector, 'guard/phpspec/inspector'
|
|
11
|
+
#autoload :Formatter, 'guard/phpspec/formatter'
|
|
12
|
+
#autoload :Notifier, 'guard/phpspec/notifier'
|
|
13
|
+
#autoload :Runner, 'guard/phpspec/runner'
|
|
14
|
+
DEFAULT_OPTIONS = {
|
|
15
|
+
:all_on_start => true,
|
|
16
|
+
:all_after_pass => true,
|
|
17
|
+
:keep_failed => true,
|
|
18
|
+
:cli => nil,
|
|
19
|
+
:tests_path => "#{Dir.pwd}/spec"
|
|
20
|
+
}
|
|
21
|
+
end
|
|
22
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: guard-phpspec
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Isam Machlovi
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-08-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Like the guard-phpunit gem, this is for projects using PHPSpec
|
|
14
|
+
email: zenchloride@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/guard/phpspec.rb
|
|
20
|
+
homepage: http://rubygames.org/gems/guard-phpspec
|
|
21
|
+
licenses:
|
|
22
|
+
- MIT
|
|
23
|
+
metadata: {}
|
|
24
|
+
post_install_message:
|
|
25
|
+
rdoc_options: []
|
|
26
|
+
require_paths:
|
|
27
|
+
- lib
|
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - '>='
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '0'
|
|
38
|
+
requirements: []
|
|
39
|
+
rubyforge_project:
|
|
40
|
+
rubygems_version: 2.0.3
|
|
41
|
+
signing_key:
|
|
42
|
+
specification_version: 4
|
|
43
|
+
summary: Guard for projects using PHPSpec
|
|
44
|
+
test_files: []
|