hola_justinwalz 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef17fab2f3b90cb6b57d2234a8e0f93441fb510b
4
- data.tar.gz: 9dc697dd2b2bff1f8b671e5e45aa3feb309c16cf
3
+ metadata.gz: 922010bfce87bd68382d8266dbca43d9ece56219
4
+ data.tar.gz: 4ac34141e701c704cc12af73dad2a21bc44d2b73
5
5
  SHA512:
6
- metadata.gz: 383382d770b8f8c5fe0efca0b2b25f9a32c0d6765467e67184668d8e4385f32e4a4e2728bcf684cef5d2a9c6ec325d082c42cffdb0d67abcd4d3ce43308fafc9
7
- data.tar.gz: d237e9c4ed227d76b5818fd0d937042c14c7ba2e895c93e474ccbfd7d0b2cf2ec13f8b8d282ef73ef00a8ec97445f2d89c18473fdc299fb236733e9d493a6326
6
+ metadata.gz: ba03cc04b7815f923953f404c67bf23ddbccf869a8257a32b9f11c86c260671d76910254ce6be8cc16c3e5f049c8a27f4f5fe3013f50aad8e04269ef14b2cef1
7
+ data.tar.gz: 4d94fd2be5100b18452882f9b6d2525c34809c97db30cd98018f80ac577e70c26a6e1bd5a596ef038bbf382b24401ebc91d1cb6914213556d46bb091b0b6b02a
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ .idea
16
+ hola_justinwalz-*.gem
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in hola_justinwalz.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 TODO: Write your name
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
+ # HolaJustinwalz
2
+
3
+ ## Installation
4
+
5
+ Add this line to your application's Gemfile:
6
+
7
+ ```ruby
8
+ gem 'hola_justinwalz'
9
+ ```
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install hola_justinwalz
18
+
19
+ ## Usage
20
+
21
+
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/hola_justinwalz/fork )
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 a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'hola_justinwalz/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "hola_justinwalz"
8
+ spec.version = HolaJustinwalz::VERSION
9
+ spec.authors = ["Justin Walz"]
10
+ spec.email = ["justin.walz10@gmail.com"]
11
+ spec.summary = "Sample Hello World gem"
12
+ spec.description = "Prints hello world!"
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
@@ -0,0 +1,3 @@
1
+ module HolaJustinwalz
2
+ VERSION = "0.0.2"
3
+ end
@@ -1,6 +1,8 @@
1
- class HolaJustinwalz
2
- def self.hi
3
- puts "Hello world!"
1
+ require "hola_justinwalz/version"
2
+
3
+ module HolaJustinwalz
4
+
5
+ def self.hello
6
+ puts "Hello World!"
4
7
  end
5
8
  end
6
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hola_justinwalz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Walz
@@ -9,15 +9,51 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-02-06 00:00:00.000000000 Z
12
- dependencies: []
13
- description: A simple hello world gem
14
- email: ''
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Prints hello world!
42
+ email:
43
+ - justin.walz10@gmail.com
15
44
  executables: []
16
45
  extensions: []
17
46
  extra_rdoc_files: []
18
47
  files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - hola_justinwalz.gemspec
19
54
  - lib/hola_justinwalz.rb
20
- homepage: http://rubygems.org/gems/hola_justinwalz
55
+ - lib/hola_justinwalz/version.rb
56
+ homepage: ''
21
57
  licenses:
22
58
  - MIT
23
59
  metadata: {}
@@ -40,5 +76,5 @@ rubyforge_project:
40
76
  rubygems_version: 2.2.2
41
77
  signing_key:
42
78
  specification_version: 4
43
- summary: Hola!
79
+ summary: Sample Hello World gem
44
80
  test_files: []