simple-period 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec58897638ba89fe940f44ba5470080aa6eb99a1d6537965d904400a6b7dc0ac
4
- data.tar.gz: 03eaf611d109f0dd3e5997904e76ef1e2411a26a16e742b397f33196aa15acf9
3
+ metadata.gz: 109e1043f7b4a0ceb5f567e9f27140d68d9cd264cdb409e956d59db5082fd17e
4
+ data.tar.gz: 98f88570fb4aeec8317583162a19fd39ef312fac666341acaac9262d579b25bd
5
5
  SHA512:
6
- metadata.gz: c0313b2ca310d2458674ee458202241ec69979682e4998d32c40a63dc73935851c2d169c869bc1e2dfe0ef17d3c7bf3350322c92b18f5c8d9bde1de946a88e66
7
- data.tar.gz: 5b53dac926d72cf3ede8a3e5b7d440ea407cd1afc2266ed02ff2ac3c9bfef5c9018a2acc30b92102abc2c68570b9565bb9e7c4ada3110fb7abeb2ffb5a39e77e
6
+ metadata.gz: 3c57a6ab9ca2b608c6a91ef974794d9d3a765b1d3e07ba302f1bccf1076455388472db56015344e86aca09e007ec393ef1075ea6851ff9c88d4704a5a315bd7f
7
+ data.tar.gz: 6daea1383d1829158542e6987508e81f1921c7313729ce987336ec95c08d50d6885b2d6d14dad259bd0eba3c4cb5135fcc74f32d13ce0d81d0d163b0b75acaf2
data/Gemfile CHANGED
@@ -2,5 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
- # Specify your gem's dependencies in simple-period.gemspec
5
+ # Specify your gem's dependencies in simple_period.gemspec
6
6
  gemspec
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple::Period
1
+ # SimplePeriod
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/simple/period`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/simple_period`. To experiment with that code, run `bin/console` for an interactive prompt.
4
4
 
5
5
  TODO: Delete this and the text above, and describe your gem
6
6
 
@@ -0,0 +1,3 @@
1
+ module SimplePeriod
2
+ VERSION = '0.1.1'
3
+ end
@@ -0,0 +1,5 @@
1
+ require "simple_period/version"
2
+
3
+ module SimplePeriod
4
+ # Your code goes here...
5
+ end
@@ -1,10 +1,10 @@
1
1
  lib = File.expand_path("../lib", __FILE__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require "simple/period/version"
3
+ require 'simple_period/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "simple-period"
7
- spec.version = Simple::Period::VERSION
7
+ spec.version = SimplePeriod::VERSION
8
8
  spec.authors = ["nishisuke"]
9
9
  spec.email = ["nishisuke13+git@gmail.com"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple-period
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - nishisuke
@@ -52,9 +52,9 @@ files:
52
52
  - Rakefile
53
53
  - bin/console
54
54
  - bin/setup
55
- - lib/simple/period.rb
56
- - lib/simple/period/version.rb
57
- - simple-period.gemspec
55
+ - lib/simple_period.rb
56
+ - lib/simple_period/version.rb
57
+ - simple_period.gemspec
58
58
  homepage: https://github.com/nishisuke/simple-period
59
59
  licenses:
60
60
  - MIT
@@ -1,5 +0,0 @@
1
- module Simple
2
- module Period
3
- VERSION = "0.1.0"
4
- end
5
- end
data/lib/simple/period.rb DELETED
@@ -1,7 +0,0 @@
1
- require "simple/period/version"
2
-
3
- module Simple
4
- module Period
5
- # Your code goes here...
6
- end
7
- end