tao 0.0.2 → 0.0.3
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 +8 -8
- data/README.md +10 -2
- data/lib/tao/version.rb +1 -1
- data/tao.gemspec +2 -4
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODAxMDFmYmQwNTI0ZDM4OTljN2FiYmJmNzA4MGM2OTE0Y2QyYmM3Zg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTUxOGNiYTVkZjE4OGY3NzIyMjVlOTNmY2JmMDIyNDAzOTY0MjRmZg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
Y2YwMjZiZTJiYmRiZjMzZWVlODA3MmNhNTViNGJkN2U2YzBmNDdiOTM4YWQy
|
10
|
+
NjM5MjZhMWNlMzM0OGFjYjhjMjIxMjdhZjI3N2M2ZGYyMzhhNDYzMWE3NmY3
|
11
|
+
OTkxMjBiMzRlZTdkMGQ3OWQ2YzQ1YTg0NmQ0NGIwZjIzZDlmNjM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YTUxYjdjZmU1N2RjMjZhNjRmODlmOGZhNTcxNDYyZDk0ODc0MTNlMjFlZjU2
|
14
|
+
YzU4ZDQyZTNlY2QxNjIyZTc0NzhmYTQxMTc2NDUzNjQ5MzVlNTlmYTYxZmU1
|
15
|
+
ODQ2MDc4NGVkMWQ0MDg3MGJlMDBmNTVmNGQ2NGEyNzA0YWMzMDU=
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Tao
|
2
2
|
|
3
|
-
|
3
|
+
Simple tool for easy Test driven development in Ruby. It is based on Rspec and Guard.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,15 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
$ tao new project_name
|
22
|
+
|
23
|
+
Will create new project with specified name.
|
24
|
+
|
25
|
+
IMPORTANT: Don't forget to run 'bundle' when you create new project.
|
26
|
+
|
27
|
+
$ tao help
|
28
|
+
|
29
|
+
If you need help.
|
22
30
|
|
23
31
|
## Contributing
|
24
32
|
|
data/lib/tao/version.rb
CHANGED
data/tao.gemspec
CHANGED
@@ -8,15 +8,13 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = Tao::VERSION
|
9
9
|
gem.authors = ["Mihail Zdravkov"]
|
10
10
|
gem.email = ["mihail0zdravkov@gmail.com"]
|
11
|
-
gem.description = %q{Tool for simple Test Driven Development in Ruby.}
|
11
|
+
gem.description = %q{Tool for simple Test Driven Development in Ruby. It is using Rspec and Guard.}
|
12
12
|
gem.summary = %q{Simple tool for Test Driven Development}
|
13
13
|
gem.homepage = "http://rubygems.org/gems/tao"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.bindir = 'bin'
|
17
|
-
gem.executables = %w(tao)
|
17
|
+
gem.executables = %w(tao)
|
18
18
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
19
19
|
gem.require_paths = ["lib"]
|
20
|
-
|
21
|
-
gem.add_dependency 'pry'
|
22
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tao
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mihail Zdravkov
|
@@ -9,22 +9,9 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2013-04-05 00:00:00.000000000 Z
|
12
|
-
dependencies:
|
13
|
-
|
14
|
-
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ! '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ! '>='
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
|
-
description: Tool for simple Test Driven Development in Ruby.
|
12
|
+
dependencies: []
|
13
|
+
description: Tool for simple Test Driven Development in Ruby. It is using Rspec and
|
14
|
+
Guard.
|
28
15
|
email:
|
29
16
|
- mihail0zdravkov@gmail.com
|
30
17
|
executables:
|