shark 0.0.0.5.2 → 0.0.0.5.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 +7 -0
- data/.gitignore +17 -17
- data/Gemfile +4 -4
- data/README.md +30 -29
- data/Rakefile +1 -1
- data/bin/Shark +544 -544
- data/lib/shark/version.rb +3 -3
- data/lib/shark.rb +5 -5
- data/shark.gemspec +23 -23
- data/src/shark.rb +578 -542
- metadata +9 -15
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f7ced407f9cddcc60b8119e94cc50ac906cac5ae
|
4
|
+
data.tar.gz: 56b8452774612eccfcb154cc57af0c58b89c81ff
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: cffbca605154c9a022c200a9acdd78c22ebb2149bed18830859fbe4721d54e38c9f6c80d362a0c88f40536675d077d6794904d8931d517388b509ff17d6c09ae
|
7
|
+
data.tar.gz: 9f7372e184ccb9ee6e8fbefb8d8b1f9a6665858809e4606661958e010f74469675ca389119e99c513f3c638911152a869da2fe44e77f334ae74b1285109dedb4
|
data/.gitignore
CHANGED
@@ -1,17 +1,17 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
.bundle
|
4
|
-
.config
|
5
|
-
.yardoc
|
6
|
-
Gemfile.lock
|
7
|
-
InstalledFiles
|
8
|
-
_yardoc
|
9
|
-
coverage
|
10
|
-
doc/
|
11
|
-
lib/bundler/man
|
12
|
-
pkg
|
13
|
-
rdoc
|
14
|
-
spec/reports
|
15
|
-
test/tmp
|
16
|
-
test/version_tmp
|
17
|
-
tmp
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
data/Gemfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in shark.gemspec
|
4
|
-
gemspec
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in shark.gemspec
|
4
|
+
gemspec
|
data/README.md
CHANGED
@@ -1,29 +1,30 @@
|
|
1
|
-
# Shark
|
2
|
-
|
3
|
-
Shark is a simple testing tool for file operations.
|
4
|
-
|
5
|
-
## Installation
|
6
|
-
|
7
|
-
Add this line to your application's Gemfile:
|
8
|
-
|
9
|
-
gem 'shark'
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
14
|
-
|
15
|
-
Or install it yourself as:
|
16
|
-
|
17
|
-
$ gem install shark
|
18
|
-
|
19
|
-
## Usage
|
20
|
-
|
21
|
-
It has a cucumber like syntax and is intended to be used to test file operations.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
1
|
+
# Shark
|
2
|
+
|
3
|
+
Shark is a simple testing tool for file operations.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'shark'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install shark
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
It has a cucumber like syntax and is intended to be used to test file operations. You can read detailed documentation
|
22
|
+
at https://github.com/adhithyan15/shark/wiki/Documentation
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
|
26
|
+
1. Fork it
|
27
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
28
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
30
|
+
5. Create new Pull Request
|
data/Rakefile
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
1
|
+
require "bundler/gem_tasks"
|