hello_sample 0.2.1 → 0.2.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: db2aa38915eea078c67f1adf1a529394b03f38ca
4
- data.tar.gz: 3d8348b09b4fd6dfee2abbb83a9b73412efd5508
3
+ metadata.gz: f2405a8c29a2c21cdb57942d7574ac09b2fd2535
4
+ data.tar.gz: 5361716b4f28e53ab3bc27c0ee90bade6897a524
5
5
  SHA512:
6
- metadata.gz: be9acb684f9ddb36ca43a4b811184e2f713f2de4148542d5e32629162e36f39f4515e86a31e5877d719668cbd83296a1aa07441037846b058625c6cf008fd870
7
- data.tar.gz: d7710da7a1fded4925a36620961855b4114f09867df2ff1d1318881aabaf66bfa68cc759c8e9c22f1418cbbbe130c588ce436daf31fdbcbcb7426d690fd07c85
6
+ metadata.gz: 0095bfedec6f24ce2eaa7bdbde2a72b93a0667504e1051c3220dfcb515ade234991964c5973aba0490683f234895b84e0b2c63b9a6be62529ad6692aced47ada
7
+ data.tar.gz: d125b921469608ac8b1f102e03d6397ed92ca01ad81ab0dcd0b728ec157eb6b50c319fed3d3a0c05b8581c9cfc8a17116d55d3ead060c19d101997a5753dcb98
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'hello_sample/version'
4
+ require 'hello/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "hello_sample"
8
- spec.version = HelloSample::VERSION
8
+ spec.version = Hello::VERSION
9
9
  spec.authors = ["noanoa07"]
10
10
  spec.email = ["aqua055@gmail.com"]
11
11
 
@@ -1,6 +1,6 @@
1
- require "hello_sample/version"
1
+ require "hello/version"
2
2
 
3
- module HelloSample
3
+ module Hello
4
4
  def self.hello
5
5
  'hello gem!'
6
6
  end
@@ -0,0 +1,3 @@
1
+ module Hello
2
+ VERSION = "0.2.2"
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hello_sample
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - noanoa07
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-06-01 00:00:00.000000000 Z
11
+ date: 2016-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -50,11 +50,9 @@ files:
50
50
  - LICENSE.txt
51
51
  - README.md
52
52
  - Rakefile
53
- - bin/console
54
- - bin/setup
55
- - hello_sample.gemspec
56
- - lib/hello_sample.rb
57
- - lib/hello_sample/version.rb
53
+ - hello.gemspec
54
+ - lib/hello.rb
55
+ - lib/hello/version.rb
58
56
  homepage: https://github.com/noanoa07/hello_sample
59
57
  licenses:
60
58
  - MIT
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "hello_sample"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,3 +0,0 @@
1
- module HelloSample
2
- VERSION = "0.2.1"
3
- end