reactive_support 0.2.2.beta → 0.2.2.beta2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1cda2046ed4fab5bb39170777e080e493d78a485
4
- data.tar.gz: 94e4af2f80ad955ca321022accb309a39fe6c4ee
3
+ metadata.gz: 1df366e9c83f6723e0fc634eb0028ba690051bbf
4
+ data.tar.gz: fa71805317d8b4051f47a051d20e47443587580f
5
5
  SHA512:
6
- metadata.gz: 1a3bbd48e6872d1c9d149c5b0018e8ec8ffdb944c4cd1441e5e5780abbc5f341cd37ac21998f595d7ff4ed2967881ccaa8cf62edc4e5b9dfe8143a9314bdcfe1
7
- data.tar.gz: 18dd8e1383073d826b7bbe9c3462017b71e3dac20348fadf49e4c84dac6906af4bbab3f431f72537bad91c13df2be7467d78e1782010980f610dabe2bba08219
6
+ metadata.gz: 0fde4b90121f00b053c5d64f694ab8e97ddc317ad2e45852c8745d9ab29a5403cb7dd0abf26f329ac656ebfd9b419bc8cdb1780e0daa52612075c06362cebe97
7
+ data.tar.gz: 375a135b61ec7a6a6ea0547f92cecdff893e329b6a19215996dca4c7edf0594fae40887423b58be7498655d4b5f8ab448759974832771ff98373805621ade20b
@@ -1,5 +1,3 @@
1
- require 'reactive_support'
2
-
3
1
  # The ReactiveExtensions module consists of methods I wish ActiveSupport provided.
4
2
  # These methods do not adhere to the ActiveSupport API. If you wish to include
5
3
  # them in your project, you will need to put this in your main project file:
@@ -9,7 +7,6 @@ require 'reactive_support'
9
7
  # requires for ReactiveSupport as it will raise a SystemStackError.
10
8
 
11
9
  module ReactiveExtensions
12
- Dir['./**/*.rb'].each {|f| require f }
13
10
 
14
11
  # The +#try_rescue+ method extends ReactiveSupport's +#try+ method so it
15
12
  # rescues NoMethodErrors and TypeErrors as well as returning +nil+ when
@@ -1,4 +1,5 @@
1
1
  Dir['./lib/reactive_support/core_ext/**/*.rb'].each {|f| require f }
2
+ Dir['./lib/reactive_support/extensions/**/*.rb'].each {|f| require f }
2
3
 
3
4
  # The ReactiveSupport module implements methods from ActiveSupport. It can be
4
5
  # included in Ruby's +Object+ class by adding +require 'reactive_support'+ to
data/spec/spec_helper.rb CHANGED
@@ -9,8 +9,7 @@ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
9
9
  SimpleCov.start if ENV["COVERAGE"]
10
10
  Coveralls.wear!
11
11
 
12
- # ReactiveExtensions requires ReactiveSupport, but not vice versa
13
- require File.expand_path('../../lib/reactive_support/extensions/reactive_extensions', __FILE__)
12
+ require File.expand_path('../../lib/reactive_support.rb', __FILE__)
14
13
 
15
14
  RSpec.configure do |c|
16
15
  c.order = 'random'
data/version.rb CHANGED
@@ -7,7 +7,7 @@ module ReactiveSupport
7
7
  MAJOR = '0'
8
8
  MINOR = '2'
9
9
  PATCH = '2'
10
- PRE = 'beta'
10
+ PRE = 'beta2'
11
11
 
12
12
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.').chomp('.')
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reactive_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2.beta
4
+ version: 0.2.2.beta2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dana Scheider