code_driven_development 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94d84107c92129b3d475303b3d6153d5b459462f
4
- data.tar.gz: 626c026e88e042aa506242509963069cbe0c3f5c
3
+ metadata.gz: c144f5b085c9dd8d557b3603539d0d48d20a9e7b
4
+ data.tar.gz: d3efd3ac64d9c9ce5f68d26db313468dc75705db
5
5
  SHA512:
6
- metadata.gz: 16a3e47fd78cbba40485de2795e6610a206b33636cd4a8b0b08f498526070b205851bfabec6e293c13fe137aea8cb3446be8a573e7f42e6601bc2b7dd1f914a9
7
- data.tar.gz: 6cb4a8d957fb9bb496f0de6c822aec06b8433ffae10340fdfd16ed679ec833cf8038f09995a38256a91540f75f05197ad5cc45a9e6e3521a040ad6e65ff4d5f6
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{TOddddd: Write a gem description}
12
- spec.summary = %q{TOddddd: Write a gem summary}
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($/)
@@ -1,3 +1,3 @@
1
1
  module CodeDrivenDevelopment
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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.1
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: 'TOddddd: Write a gem 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
- - code-driven-development.gemspec
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: 'TOddddd: Write a gem 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