spike-ruby 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: e90c5d3cd17f9db0d1e8181b42045c8891aa1f20
4
- data.tar.gz: b0463b42b1186dd4d8d69a8c20c433f788a56cdf
3
+ metadata.gz: c606861bc1d70e2f5c0e42de11de7e7daa2a4f36
4
+ data.tar.gz: 6d3c03e93876c9d4d06fb13a73cc52409421ff17
5
5
  SHA512:
6
- metadata.gz: f7e6a8d2e4fae0518fde1d213ab6989e19811821a2e74ea319c0ba58bd4a2b7e6dbdbf5c070a2c3f3170c0f4112b3e407496a0c54f7f1b62df8f0261e737adc4
7
- data.tar.gz: 009b6eafee3914c26fe3519fdffeca25e73620aa0a9645ce3be1aaff9610349a3d11be4d86208e8509f2021d3bd6b671fbbf69ba64978921a3435d39a4858152
6
+ metadata.gz: 30104eaebaebc38cca9fa858d600032c3ed364df1a165eb8a81861d949ee1de26372ed7f1512fcd9e6ee6ac9bcf0728bbd5003a07222388a5e0c633e123a9728
7
+ data.tar.gz: 549e5500a0ebe44eaf8a0cff66f8357045e6b0eec246994432ea82e0da03fcb13409bdedb6c6084ae609fa914f424d04cc01a3c51af389d201fa0364c04dbe93
data/README.md CHANGED
@@ -48,7 +48,7 @@ Or install it yourself as:
48
48
 
49
49
  ## Contributing
50
50
 
51
- 1. Fork it ( https://github.com/[my-github-username]/spike-ruby/fork )
51
+ 1. Fork it ( https://github.com/spice-life/spike-ruby/fork )
52
52
  2. Create your feature branch (`git checkout -b my-new-feature`)
53
53
  3. Commit your changes (`git commit -am 'Add some feature'`)
54
54
  4. Push to the branch (`git push origin my-new-feature`)
data/lib/spike.rb CHANGED
@@ -1,3 +1,4 @@
1
+ require 'spike/version'
1
2
  require 'spike/charge'
2
3
  require 'spike/error'
3
4
 
@@ -0,0 +1,3 @@
1
+ class Spike
2
+ VERSION = "0.0.2"
3
+ end
data/spike-ruby.gemspec CHANGED
@@ -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 'spike/ruby/version'
4
+ require 'spike/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "spike-ruby"
8
- spec.version = Spike::Ruby::VERSION
8
+ spec.version = Spike::VERSION
9
9
  spec.authors = ["AKAMATSU Yuki"]
10
10
  spec.email = ["y.akamatsu@ukstudio.jp"]
11
11
  spec.summary = %q{Ruby library for SPIKE API}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spike-ruby
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
  - AKAMATSU Yuki
@@ -82,8 +82,7 @@ files:
82
82
  - lib/spike.rb
83
83
  - lib/spike/charge.rb
84
84
  - lib/spike/error.rb
85
- - lib/spike/ruby.rb
86
- - lib/spike/ruby/version.rb
85
+ - lib/spike/version.rb
87
86
  - spec/spec_helper.rb
88
87
  - spike-ruby.gemspec
89
88
  homepage: http://github.com/spice-life/spike-ruby
data/lib/spike/ruby.rb DELETED
@@ -1,7 +0,0 @@
1
- require "spike/ruby/version"
2
-
3
- module Spike
4
- module Ruby
5
- # Your code goes here...
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- class Spike
2
- module Ruby
3
- VERSION = "0.0.1"
4
- end
5
- end