hola_douzmanian 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: deafbe37f050db18ce99793e8564edc2569ab65e
4
+ data.tar.gz: 5032657ca2cfe461a34e57be4343e8dadfa719a3
5
+ SHA512:
6
+ metadata.gz: cb5e06049aa4d12165ed235eb8d5ca8a2336619e0616f6103b25f4b37163a263a1ea3bb8ba5b89aceabb9a70344a6dc08c4fbb0c1569c4f1fd50a4d5ab215922
7
+ data.tar.gz: 689053690aadb447113351e4d8b6a623d732960395af32e3f02eff591e59e265ab6f7d609349ea5821e1e5f0056bd964e50554e2f3f5a8ee0c09d3613fef7da3
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'hola'
4
+ puts Hola.hi(ARGV[0])
@@ -0,0 +1,5 @@
1
+ class Hola
2
+ def self.hi
3
+ puts "Hello world!"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require 'test/unit'
2
+ require 'hola_douzmanian'
3
+
4
+ class HolaTest < Test::Unit::TestCase
5
+ def test_any_hello
6
+ assert_equal "hello world", Hola.hi("ruby")
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hola_douzmanian
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Christina Douzmanian
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-09-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: cdouzmanian@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - Rakefile
20
+ - lib/hola_douzmanian.rb
21
+ - bin/hola_douzmanian
22
+ - test/test_hola_douzmanian.rb
23
+ homepage: http://rubygems.org/gems/hola_douzmanian
24
+ licenses: []
25
+ metadata: {}
26
+ post_install_message:
27
+ rdoc_options: []
28
+ require_paths:
29
+ - lib
30
+ required_ruby_version: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ requirements: []
41
+ rubyforge_project:
42
+ rubygems_version: 2.0.14
43
+ signing_key:
44
+ specification_version: 3
45
+ summary: Hola!
46
+ test_files:
47
+ - test/test_hola_douzmanian.rb
48
+ has_rdoc: