minitest-crowdsource 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/minitest/crowdsource.rb +14 -0
- data/lib/minitest/crowdsource/version.rb +5 -0
- data/minitest-crowdsource.gemspec +25 -0
- metadata +103 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8b94cf9fe7f2618427601ada5e7f7620f2c84a55
|
4
|
+
data.tar.gz: 7e140ff01cead3eab5b2de217fabf59f69073eaa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f6264fe6c9a61eed177b0fd7adac3848715cc2a0bf521b38b101ae84ee3c6be4dbd63c4e39f2f2b0fa2fb3820850d212eb237a6770ffb30da9cec3f03e634a56
|
7
|
+
data.tar.gz: 95426e996a403fe63555307a09dababab624f4fb6555795fd4d400a4b8a54a180efcd7a41c1ed05c79c57d54f633cc489999e5e24c3ddfb173d8a04dce3dc03b
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Joseph Hsu
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Minitest::Crowdsource
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'minitest-crowdsource'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install minitest-crowdsource
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'minitest/crowdsource/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "minitest-crowdsource"
|
8
|
+
spec.version = Minitest::Crowdsource::VERSION
|
9
|
+
spec.authors = ["Joseph Hsu"]
|
10
|
+
spec.email = ["jhsu.x1@gmail.com"]
|
11
|
+
spec.summary = %q{Crowdsource your assertions.}
|
12
|
+
spec.description = <<-DESCRIPTION
|
13
|
+
Have a human look at your object and let you know if it is valid.
|
14
|
+
DESCRIPTION
|
15
|
+
spec.homepage = "http://github.com/jhsu/minitest-crowdsource"
|
16
|
+
spec.license = "MIT"
|
17
|
+
|
18
|
+
spec.files = `git ls-files`.split($/)
|
19
|
+
# spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: minitest-crowdsource
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Joseph Hsu
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDMjCCAhqgAwIBAgIBADANBgkqhkiG9w0BAQUFADA/MQ0wCwYDVQQDDARqaHN1
|
14
|
+
MRkwFwYKCZImiZPyLGQBGRYJam9zZXBoaHN1MRMwEQYKCZImiZPyLGQBGRYDY29t
|
15
|
+
MB4XDTEzMDYwMzEzMzMxMFoXDTE0MDYwMzEzMzMxMFowPzENMAsGA1UEAwwEamhz
|
16
|
+
dTEZMBcGCgmSJomT8ixkARkWCWpvc2VwaGhzdTETMBEGCgmSJomT8ixkARkWA2Nv
|
17
|
+
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANXV57F4Wx7Z/DNucqvN
|
18
|
+
aCL2XB7kV04O75Yq9oaXQ7FbYLHzlR0sMKnvBo/z04sBc+pij3zD40q6n3Oimz9f
|
19
|
+
k4qwcnUrx7RjU1DkyIU8l9o78eoN9MJDoW1VpTLgyg1Tx3Q9MDnJNwEl952JaSPk
|
20
|
+
CZBgkwFqDsq5hXz2WCOeTElhZXHPsQALJUjSlETC4MNOgLBeyx/Rm/QZ4GbS3AwD
|
21
|
+
AkTtKCQPCz4xBboDP9TXfGskVdXBBG2TS/z4KMaeb7xQoSK9h2JKBZov5+7ylO9a
|
22
|
+
m73dcCUonZ+8IHagz07mWp3BRdMmxMfM9MXEPKkYHSWBZZv2XqTBNUdGeW2PXDpL
|
23
|
+
xFMCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFFmL
|
24
|
+
lG+M2zYy6k6JLMKJ0VKFsImpMA0GCSqGSIb3DQEBBQUAA4IBAQAw/MYlISq+6Xtr
|
25
|
+
H2cRruJ4HrAhDI6B5AVC1D/D7C1Etc8pRvyRFAn+0tbUqeg5GiVtpPmzcEuBy2Ba
|
26
|
+
u7xZWuofwZ6pCvpo7edCyeEc5zC2ZCoVUvIxX4apkz9CQqxTJ74HfxFYE/Ex/wHq
|
27
|
+
JRhHdyDEnXF5UsKqXKihlYTOwT4wIq7eHMk4i6ARnRvb6wIgwiyGSyZF5SlzMnCg
|
28
|
+
ImECgL5KdWfHRJW/3klC3VInamZiyi66DjN14Aq7Ke60jocyY2fzsopQyFfYrsRA
|
29
|
+
YHLmu1F+Z63Z+oET0d/F/If/nZsqQAfJFm0SpYlNI5Ll6/WXdGraw3DDt4qk5QIh
|
30
|
+
jzyX2vg5
|
31
|
+
-----END CERTIFICATE-----
|
32
|
+
date: 2013-07-19 00:00:00.000000000 Z
|
33
|
+
dependencies:
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: bundler
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
type: :development
|
42
|
+
prerelease: false
|
43
|
+
version_requirements: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.3'
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: rake
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: |2
|
63
|
+
Have a human look at your object and let you know if it is valid.
|
64
|
+
email:
|
65
|
+
- jhsu.x1@gmail.com
|
66
|
+
executables: []
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files: []
|
69
|
+
files:
|
70
|
+
- .gitignore
|
71
|
+
- Gemfile
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- lib/minitest/crowdsource.rb
|
76
|
+
- lib/minitest/crowdsource/version.rb
|
77
|
+
- minitest-crowdsource.gemspec
|
78
|
+
homepage: http://github.com/jhsu/minitest-crowdsource
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.0.3
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: Crowdsource your assertions.
|
102
|
+
test_files: []
|
103
|
+
has_rdoc:
|
metadata.gz.sig
ADDED
Binary file
|