rpromise 0.0.2 → 0.0.4

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: 0048abb5bacb637a0a24bc0f4d8eeccc7c0fe6f2
4
- data.tar.gz: 0f86b37977c56fedec77cda659c89e28bc730d92
3
+ metadata.gz: 9b10d619743dc3c21bbeadabdabfe44644e9f1d1
4
+ data.tar.gz: ead44b4ddf6558d9cc86ae1845319c890803b0ad
5
5
  SHA512:
6
- metadata.gz: 37d01ed321be0b7b8f60bee99a85b89a314a286166c0b359b7753f703498f439aafbb02a27748922fef9b0d2c992dfb292375bfd434d7013ab17e8c6c67e9994
7
- data.tar.gz: acbb73c183c998dcd2624611949ef2eff55453367e9d6f3041101a4698076399c6bc230d30720b779ead1623662cd2b986d5ef65d4331ddf9b057eea36845e1e
6
+ metadata.gz: 37f7b63b48e48bd8fb678d3822341055a526f330eb615a2055964efce61461c6b41ccb3ed0f8e0d9e7906a878d93a05b0df6feb1676a658a0831b8062859801a
7
+ data.tar.gz: a64adabdb624c26505386d2241f7f2b89f86e7e6f06130c0587adb85b9e385f2a15a609d2f7b87a1b34f212ae971abd94b7ad43a437eb8157b3be076c1b7382f
@@ -1,3 +1,3 @@
1
1
  module Rpromise
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.4"
3
3
  end
data/lib/rpromise.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require "rpromise/version"
2
2
  require "rpromise/promise"
3
- require "rpromise/future"
4
3
 
5
4
  module Rpromise
6
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpromise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Samuel Molinari
@@ -90,20 +90,15 @@ files:
90
90
  - .gitignore
91
91
  - .rspec
92
92
  - .travis.yml
93
- - .travis.yml.swp
94
93
  - Gemfile
95
94
  - Guardfile
96
95
  - LICENSE.txt
97
96
  - README.md
98
97
  - Rakefile
99
98
  - lib/rpromise.rb
100
- - lib/rpromise/.promise.rb.swp
101
- - lib/rpromise/future.rb
102
99
  - lib/rpromise/promise.rb
103
100
  - lib/rpromise/version.rb
104
101
  - rpromise.gemspec
105
- - spec/lib/rpromise/.promise_spec.rb.swp
106
- - spec/lib/rpromise/future_spec.rb
107
102
  - spec/lib/rpromise/promise_spec.rb
108
103
  - spec/spec_helper.rb
109
104
  homepage: ''
@@ -131,7 +126,5 @@ signing_key:
131
126
  specification_version: 4
132
127
  summary: Handle async method easily
133
128
  test_files:
134
- - spec/lib/rpromise/.promise_spec.rb.swp
135
- - spec/lib/rpromise/future_spec.rb
136
129
  - spec/lib/rpromise/promise_spec.rb
137
130
  - spec/spec_helper.rb
data/.travis.yml.swp DELETED
Binary file
Binary file
@@ -1,7 +0,0 @@
1
- require 'rpromise'
2
-
3
- class ::Rpromise::Future
4
-
5
-
6
- end
7
-
Binary file
@@ -1,5 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe ::Rpromise::Future do
4
-
5
- end