odarjax 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0d16c6c75ee4b415909faa727b8bf1f0a0bd7460
4
+ data.tar.gz: 0804dd9cb915eefc1582175365d29418510a2de8
5
+ SHA512:
6
+ metadata.gz: 347c36f009b5b5039f39cb48152228a2dd221605527344ea392ba5de3978ead5a363b9f29fcac6617bbe13553cf9381f0bbcb5af790034efa582d1e10be8906d
7
+ data.tar.gz: 3eda2653478179df00c015b51676d554b83aea87ccc2933dca1d0d6b6f9d9e6edd638df1789e56277bdbd3a61068626bc14023f5f54c3f6072d551a76dc1b829
File without changes
@@ -0,0 +1,6 @@
1
+ require "rake/testtask"
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << "lib"
5
+ t.test_files = Dir["test/**/*_test.rb"]
6
+ end
@@ -0,0 +1,5 @@
1
+ module Odarjax
2
+ def self.say
3
+ "Hello World!"
4
+ end
5
+ end
File without changes
@@ -0,0 +1,8 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "odarjax"
3
+ s.version = "0.1.0"
4
+ s.description = "A simple gem that says hello to the world!"
5
+ s.summary = "Say hello!"
6
+ s.author = "Wagner Bigal"
7
+ s.files = Dir["{lib/**/*.rb,README.rdoc,test/**/*.rb,Rakefile,*.gemspec}"]
8
+ end
@@ -0,0 +1,8 @@
1
+ require "test/unit"
2
+ require "odarjax"
3
+
4
+ class OdarjaxTest < Test::Unit::TestCase
5
+ def test_say_hello_to_the_world
6
+ assert_equal "Hello World!", Odarjax.say
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: odarjax
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Wagner Bigal
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple gem that says hello to the world!
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/odarjax/version.rb
20
+ - lib/odarjax.rb
21
+ - README.rdoc
22
+ - test/odarjax_test.rb
23
+ - Rakefile
24
+ - odarjax.gemspec
25
+ homepage:
26
+ licenses: []
27
+ metadata: {}
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - '>='
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - '>='
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubyforge_project:
44
+ rubygems_version: 2.1.11
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: Say hello!
48
+ test_files: []