code_driven_development 0.0.1 → 0.0.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c144f5b085c9dd8d557b3603539d0d48d20a9e7b
|
|
4
|
+
data.tar.gz: d3efd3ac64d9c9ce5f68d26db313468dc75705db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59908017bb8718d06e375823a82cc6e621492748ce239b588b0bdf163f66957c206a35cd29742ebd8286cb7f595480427e676f832758976f4af1bfc12e94fe9d
|
|
7
|
+
data.tar.gz: 743edeb664f209fcfc5aec2c827b7b9a899a57b1c8a2308b6d6c2a73e3122553d8bb50bee47dbb9daff1988c22822c516551971beacdca031971feaae5d3d761
|
|
@@ -8,9 +8,9 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = CodeDrivenDevelopment::VERSION
|
|
9
9
|
spec.authors = ["Dan Finnie"]
|
|
10
10
|
spec.email = ["dan@danfinnie.com"]
|
|
11
|
-
spec.description = %q{
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.homepage = ""
|
|
11
|
+
spec.description = %q{Automatically generate stubby tests from your implementation.}
|
|
12
|
+
spec.summary = %q{Ever see a test and think, "wow, this test cares a lot about the exact abstract syntax tree of the code?" CDD aims to generate tests like that.}
|
|
13
|
+
spec.homepage = "https://github.com/danfinnie/code-driven-development"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: code_driven_development
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Finnie
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - '>='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
69
|
+
description: Automatically generate stubby tests from your implementation.
|
|
70
70
|
email:
|
|
71
71
|
- dan@danfinnie.com
|
|
72
72
|
executables:
|
|
@@ -81,7 +81,7 @@ files:
|
|
|
81
81
|
- README.md
|
|
82
82
|
- Rakefile
|
|
83
83
|
- bin/cdd
|
|
84
|
-
-
|
|
84
|
+
- code_driven_development.gemspec
|
|
85
85
|
- lib/code_driven_development.rb
|
|
86
86
|
- lib/code_driven_development/code_driven_development.rb
|
|
87
87
|
- lib/code_driven_development/indented_output.rb
|
|
@@ -101,7 +101,7 @@ files:
|
|
|
101
101
|
- spec/my_spec.rb
|
|
102
102
|
- spec/spec_helper.rb
|
|
103
103
|
- spec/support/have_consecutive_lines_matching_matcher.rb
|
|
104
|
-
homepage:
|
|
104
|
+
homepage: https://github.com/danfinnie/code-driven-development
|
|
105
105
|
licenses:
|
|
106
106
|
- MIT
|
|
107
107
|
metadata: {}
|
|
@@ -124,7 +124,8 @@ rubyforge_project:
|
|
|
124
124
|
rubygems_version: 2.0.0
|
|
125
125
|
signing_key:
|
|
126
126
|
specification_version: 4
|
|
127
|
-
summary:
|
|
127
|
+
summary: Ever see a test and think, "wow, this test cares a lot about the exact abstract
|
|
128
|
+
syntax tree of the code?" CDD aims to generate tests like that.
|
|
128
129
|
test_files:
|
|
129
130
|
- spec/my_spec.rb
|
|
130
131
|
- spec/spec_helper.rb
|