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
data/lib/shark/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
module Shark
|
2
|
-
VERSION = "0.0.0.5.
|
3
|
-
end
|
1
|
+
module Shark
|
2
|
+
VERSION = "0.0.0.5.3"
|
3
|
+
end
|
data/lib/shark.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
require "shark/version"
|
2
|
-
|
3
|
-
module Shark
|
4
|
-
# Your code goes here...
|
5
|
-
end
|
1
|
+
require "shark/version"
|
2
|
+
|
3
|
+
module Shark
|
4
|
+
# Your code goes here...
|
5
|
+
end
|
data/shark.gemspec
CHANGED
@@ -1,23 +1,23 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'shark/version'
|
5
|
-
|
6
|
-
Gem::Specification.new do |spec|
|
7
|
-
spec.name = "shark"
|
8
|
-
spec.version = Shark::VERSION
|
9
|
-
spec.authors = ["Adhithya Rajasekaran"]
|
10
|
-
spec.email = ["adhithyan15@gmail.com"]
|
11
|
-
spec.description = %q{Shark is a simple testing tool}
|
12
|
-
spec.summary = %q{Shark is a testing tool focused on testing file operations}
|
13
|
-
spec.homepage = "http://adhithyan15.github.io/shark"
|
14
|
-
spec.license = "MIT"
|
15
|
-
|
16
|
-
spec.files = `git ls-files`.split($/)
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
-
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
-
spec.require_paths = ["lib"]
|
20
|
-
|
21
|
-
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
-
spec.add_development_dependency "rake"
|
23
|
-
end
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'shark/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "shark"
|
8
|
+
spec.version = Shark::VERSION
|
9
|
+
spec.authors = ["Adhithya Rajasekaran"]
|
10
|
+
spec.email = ["adhithyan15@gmail.com"]
|
11
|
+
spec.description = %q{Shark is a simple testing tool}
|
12
|
+
spec.summary = %q{Shark is a testing tool focused on testing file operations}
|
13
|
+
spec.homepage = "http://adhithyan15.github.io/shark"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|