rubygem-with-test-unit 0.0.1

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.
data/.gitignore ADDED
@@ -0,0 +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
data/Foo ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in rubygem-with-test-unit.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Sahil and Ketan
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,10 @@
1
+ [![Build Status](https://smoke.snap-ci.com/projects/goci/x-rubygem-with-test-unit/build_image)](https://smoke.snap-ci.com/projects/goci/x-rubygem-with-test-unit/build_history)
2
+
3
+ hehe
4
+ hoho
5
+ hula
6
+ oi, menino!
7
+ tudo bem?
8
+ tudo bem
9
+ ola, bom dia
10
+ bom dia =)
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ require "bundler/gem_tasks"
2
+ require 'rubygems'
3
+
4
+ require 'rake'
5
+ require 'rake/testtask'
6
+
7
+ desc "run all tests"
8
+ Rake::TestTask.new do |t|
9
+ t.libs << "test"
10
+ t.test_files = FileList['test/*_test.rb']
11
+ t.verbose = true
12
+ end
data/foobar ADDED
@@ -0,0 +1 @@
1
+ asdf
@@ -0,0 +1,9 @@
1
+ module Rubygem
2
+ module With
3
+ module Test
4
+ module Unit
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ require "rubygem-with-test-unit/version"
2
+
3
+ module Rubygem
4
+ module With
5
+ module Test
6
+ module Unit
7
+ # Your code goes here...
8
+ end
9
+ end
10
+ end
11
+ end
data/master ADDED
File without changes
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rubygem-with-test-unit/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "rubygem-with-test-unit"
8
+ gem.version = Rubygem::With::Test::Unit::VERSION
9
+ gem.authors = ["Sahil and Ketan"]
10
+ gem.email = ["sahil+ketan@snap-ci.com"]
11
+ gem.description = %q{Test gem}
12
+ gem.summary = %q{Testing 1,2,3}
13
+ gem.homepage = ""
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+ end
data/test/foo_test.rb ADDED
@@ -0,0 +1,7 @@
1
+ require "test/unit"
2
+
3
+ class FooTest < Test::Unit::TestCase
4
+ def test_passes
5
+ assert true
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubygem-with-test-unit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Sahil and Ketan
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-05-10 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Test gem
15
+ email:
16
+ - sahil+ketan@snap-ci.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Foo
23
+ - Gemfile
24
+ - LICENSE.txt
25
+ - README.md
26
+ - Rakefile
27
+ - foobar
28
+ - lib/rubygem-with-test-unit.rb
29
+ - lib/rubygem-with-test-unit/version.rb
30
+ - master
31
+ - rubygem-with-test-unit.gemspec
32
+ - test/foo_test.rb
33
+ homepage: ''
34
+ licenses: []
35
+ post_install_message:
36
+ rdoc_options: []
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ none: false
47
+ requirements:
48
+ - - ! '>='
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubyforge_project:
53
+ rubygems_version: 1.8.21
54
+ signing_key:
55
+ specification_version: 3
56
+ summary: Testing 1,2,3
57
+ test_files:
58
+ - test/foo_test.rb