chourey 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f0c38e3df499396b16b77ab0d4042ed7ae77ee36
4
+ data.tar.gz: 1d087cc50b730c8660496ad0b5cc61ecbfcb3821
5
+ SHA512:
6
+ metadata.gz: a340f8fcae9684eac5b39a2e3642a73e607c186e331110ab54f8a6b6fbe2f71dd424dd742ec8f02f6607f86cb13d634d9880c587f4c2fc81ad09a8b8678487b1
7
+ data.tar.gz: 277168e5712b71acafce5b7122343e7eb29f2af0e08598e4a461731cdea47ccd629d3f3ccc5d6fc565cb8ba4c1c2bbc085ebbd35aabe029a9b07f3ef901d5737
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
data/bin/chourey ADDED
@@ -0,0 +1,2 @@
1
+ require 'chourey'
2
+ puts Hola.hi(ARGV[0])
data/lib/chourey.rb ADDED
@@ -0,0 +1,5 @@
1
+ class Chourey
2
+ def self.hi
3
+ puts "Hello Sandeep!"
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ require 'test/unit'
2
+ require 'chourey'
3
+
4
+ class ChoureyTest < Test::Unit::TestCase
5
+ def test_english_hello
6
+ assert_equal "hello world", Chourey.hi
7
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chourey
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sandeep Chourey
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A simple hello world gem
14
+ email: sandeep@zealousweb.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - Rakefile
20
+ - bin/chourey
21
+ - lib/chourey.rb
22
+ - test/test_chourey.rb
23
+ homepage: http://rubygems.org/gems/chourey
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.4.3
43
+ signing_key:
44
+ specification_version: 3
45
+ summary: chourey!
46
+ test_files:
47
+ - test/test_chourey.rb