mosso 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: ab45b82d504891b1cee95b1582abc2873f7ed29d
4
- data.tar.gz: 24eb036968d875eff5b0834fd2cc2003c3a7ec17
3
+ metadata.gz: 7e446b43885b8b9059822890998c06eaea75dff7
4
+ data.tar.gz: 23222c85b8ee6e335d85c177eb1266a5e69f051f
5
5
  SHA512:
6
- metadata.gz: 7ac56cdeeb4a4dc28a8222679429377932246313ffd4235446591ea62cb2ffca6ebea5d8baee71e0a896f6b778be237ba63c8f51e0f5bdc3976faaf1ee5518be
7
- data.tar.gz: 2463749f51a1cab3c0fd9bf3198fdbff9d8c9cb2d2060a21603e4581bcc762cb3abd1a65ec8866a7cc4cfc2f0de2a0d7e31b522f42f448fb2b8d50c113165525
6
+ metadata.gz: ea90ca4c63583a195307c6e6fa42103f97d22ddd3262d7ecfdcb28659b4bd8d7f19306a246d7b9c98d7dfed34dbfd74e439201889f40c9ba78378db3287832d6
7
+ data.tar.gz: 17696d70ad3566d9b0beff9841c10ea3aaa7769db9ae225f28023f947622c49142c2b06391137c102dba4d046e43362e6802c0c41f79f5960c3f9221fa34ba9f
data/lib/mosso/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Mosso
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/lib/mosso.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require "mosso/version"
2
- require "../extension/mosso"
2
+ require "mosso/extension/mosso"
3
3
 
4
4
  module Mosso
5
5
  # Your code goes here...
data/spec/mosso_spec.rb CHANGED
@@ -1,9 +1,9 @@
1
- require './spec_helper'
1
+ require 'spec_helper'
2
2
 
3
3
  describe Mosso do
4
4
  it 'should have a version number' do
5
5
  Mosso::VERSION.should_not be_nil
6
- Mosso::VERSION.should == "0.0.1"
6
+ Mosso::VERSION.should == "0.0.2"
7
7
  end
8
8
 
9
9
  it 'should measure rightly the execution time' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mosso
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
  - ryosy383
@@ -66,8 +66,8 @@ files:
66
66
  - LICENSE.txt
67
67
  - README.md
68
68
  - Rakefile
69
- - extension/mosso.rb
70
69
  - lib/mosso.rb
70
+ - lib/mosso/extension/mosso.rb
71
71
  - lib/mosso/version.rb
72
72
  - mosso.gemspec
73
73
  - spec/mosso_spec.rb
File without changes