goflippy-ruby 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
  SHA1:
3
- metadata.gz: 2ff44c7c28fe21182366e2d89e03bb42289db183
4
- data.tar.gz: 6b60d50ce3b985963fd102649b4c5c81abf59dcd
3
+ metadata.gz: 6a5c3e55eaf5f70ccac4942708a9de866a7e42ac
4
+ data.tar.gz: c1ff9a735a2da18b5dc80bb5944e97fef809b309
5
5
  SHA512:
6
- metadata.gz: a8e2146ef06ef3147e59fca1d7790abdcd656ff89875d71bd45915a6a10314eacca1b720c59147b1fcef231bec40ee3a870d3a49886e0cbeec67756adeae4e87
7
- data.tar.gz: 5d2fba85118ccf23fd097ddcf87315dabe6813d751f7e2869478cff0783b2d51396a3d73e19c678eb36d3e85889ed71f682e489d334fdf03b684da938ebf7b1c
6
+ metadata.gz: db98d31c05c33c8b18a698f05c3c01b0c740f816fb45efe4283499a8388f058d325277298e27e998880d1da511b646ef7cf61913ecf3ce0582a33b8703a2b7d7
7
+ data.tar.gz: 9f2dc6c460664b1d42d7bf0c931aca52669435964c6012ee2babf4f1abeab4dac7939cc8d648944c020deaeb286b1061e997788ac041315be9ee96a050bb0168
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'bundler/setup'
4
- require 'goflippy'
4
+ require 'goflippy-ruby'
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -2,7 +2,7 @@
2
2
 
3
3
  lib = File.expand_path('../lib', __FILE__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require 'goflippy/version'
5
+ require 'goflippy-ruby/version'
6
6
 
7
7
  Gem::Specification.new do |spec|
8
8
  spec.name = 'goflippy-ruby'
@@ -0,0 +1,11 @@
1
+ require 'goflippy-ruby/logger'
2
+ require 'goflippy-ruby/config'
3
+ require 'goflippy-ruby/client'
4
+ require 'goflippy-ruby/http_client'
5
+ require 'goflippy-ruby/memory_store'
6
+ require 'goflippy-ruby/poller'
7
+ require 'goflippy-ruby/version'
8
+ require 'goflippy-ruby/worker'
9
+
10
+ module GoFlippy
11
+ end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module GoFlippy
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: goflippy-ruby
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
  - neko-neko
@@ -96,15 +96,15 @@ files:
96
96
  - Rakefile
97
97
  - bin/console
98
98
  - goflippy-ruby.gemspec
99
- - lib/goflippy.rb
100
- - lib/goflippy/client.rb
101
- - lib/goflippy/config.rb
102
- - lib/goflippy/http_client.rb
103
- - lib/goflippy/logger.rb
104
- - lib/goflippy/memory_store.rb
105
- - lib/goflippy/poller.rb
106
- - lib/goflippy/version.rb
107
- - lib/goflippy/worker.rb
99
+ - lib/goflippy-ruby.rb
100
+ - lib/goflippy-ruby/client.rb
101
+ - lib/goflippy-ruby/config.rb
102
+ - lib/goflippy-ruby/http_client.rb
103
+ - lib/goflippy-ruby/logger.rb
104
+ - lib/goflippy-ruby/memory_store.rb
105
+ - lib/goflippy-ruby/poller.rb
106
+ - lib/goflippy-ruby/version.rb
107
+ - lib/goflippy-ruby/worker.rb
108
108
  homepage: https://github.com/neko-neko/goflippy-ruby
109
109
  licenses:
110
110
  - MIT
data/lib/goflippy.rb DELETED
@@ -1,11 +0,0 @@
1
- require 'goflippy/logger'
2
- require 'goflippy/config'
3
- require 'goflippy/client'
4
- require 'goflippy/http_client'
5
- require 'goflippy/memory_store'
6
- require 'goflippy/poller'
7
- require 'goflippy/version'
8
- require 'goflippy/worker'
9
-
10
- module GoFlippy
11
- end