feature_channel 0.2.0 → 0.2.1

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
  SHA256:
3
- metadata.gz: 971e8ce1d7ec81c7cd48106ebaa3164e03f301192812dfb0ad20051c318d9863
4
- data.tar.gz: 07c4594c6ebce6ee2a96b2353c55cfbdb59899a02fff29d7526ae91de7ce0192
3
+ metadata.gz: 27404131e33e61da86126a114835687147527b22e318617245e21e02c061831a
4
+ data.tar.gz: aeb3ef7005a6230d042ae5f209b29638e66179d3b622a74460840164065ed9fb
5
5
  SHA512:
6
- metadata.gz: 64552c9a965c24e777ab20dd7ae8c3769406d40343453ed58b9e6905522f1edd335a5e5dca34c2bf616668618a9be3955d756f6dbc6aa346d36b22eef3eaadaf
7
- data.tar.gz: 3d034c6596e3f29717b79a1bb847438bdb9e6a233352a14d35add5cc696eead60acf2ede48703d0bce7b4da8f59300c7e2524fc3399c65fbed797df89be1e7a6
6
+ metadata.gz: ddd56184779457a051ed210f58468b8446e6b03b99ef20de0333bf5c343e541aee4185a85a76ffeeb4148af7c2bcd1a3970ca6c601e1c90e15b9a769fdcf9c04
7
+ data.tar.gz: a3b77ae805ba78e229e806360c4d3c487751bb845903ca791c442b4964f01f107165f65da648bcde9bb4863d77cb35dd883161ba7a5fed3e0053637236f25264
data/.gitignore CHANGED
@@ -1,11 +1,88 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
1
+
2
+ # Created by https://www.gitignore.io/api/ruby,vim
3
+ # Edit at https://www.gitignore.io/?templates=ruby,vim
4
+
5
+ ### Ruby ###
6
+ *.gem
7
+ *.rbc
8
+ /.config
4
9
  /coverage/
5
- /doc/
10
+ /InstalledFiles
6
11
  /pkg/
7
12
  /spec/reports/
13
+ /spec/examples.txt
14
+ /test/tmp/
15
+ /test/version_tmp/
8
16
  /tmp/
9
17
 
10
- # rspec failure tracking
11
- .rspec_status
18
+ # Used by dotenv library to load environment variables.
19
+ # .env
20
+
21
+ # Ignore Byebug command history file.
22
+ .byebug_history
23
+
24
+ ## Specific to RubyMotion:
25
+ .dat*
26
+ .repl_history
27
+ build/
28
+ *.bridgesupport
29
+ build-iPhoneOS/
30
+ build-iPhoneSimulator/
31
+
32
+ ## Specific to RubyMotion (use of CocoaPods):
33
+ #
34
+ # We recommend against adding the Pods directory to your .gitignore. However
35
+ # you should judge for yourself, the pros and cons are mentioned at:
36
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
37
+ # vendor/Pods/
38
+
39
+ ## Documentation cache and generated files:
40
+ /.yardoc/
41
+ /_yardoc/
42
+ /doc/
43
+ /rdoc/
44
+
45
+ ## Environment normalization:
46
+ /.bundle/
47
+ /vendor/bundle
48
+ /lib/bundler/man/
49
+
50
+ # for a library or gem, you might want to ignore these files since the code is
51
+ # intended to run in multiple environments; otherwise, check them in:
52
+ # Gemfile.lock
53
+ # .ruby-version
54
+ # .ruby-gemset
55
+
56
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
57
+ .rvmrc
58
+
59
+ ### Ruby Patch ###
60
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
61
+ # .rubocop-https?--*
62
+
63
+ ### Vim ###
64
+ # Swap
65
+ [._]*.s[a-v][a-z]
66
+ [._]*.sw[a-p]
67
+ [._]s[a-rt-v][a-z]
68
+ [._]ss[a-gi-z]
69
+ [._]sw[a-p]
70
+
71
+ # Session
72
+ Session.vim
73
+ Sessionx.vim
74
+
75
+ # Temporary
76
+ .netrwhist
77
+ *~
78
+
79
+ # Auto-generated tag files
80
+ tags
81
+
82
+ # Persistent undo
83
+ [._]*.un~
84
+
85
+ # Coc configuration directory
86
+ .vim
87
+
88
+ # End of https://www.gitignore.io/api/ruby,vim
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = '
13
13
  FeatureChannel is a generic componnet to connect your features and services using diferent strategies
14
14
  '
15
- spec.homepage = 'https://github.com/dvinciguerra'
15
+ spec.homepage = 'https://github.com/dvinciguerra/feature_channel'
16
16
  spec.license = 'MIT'
17
17
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
18
18
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module FeatureChannel
2
- VERSION = "0.2.0"
4
+ VERSION = '0.2.1'
3
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feature_channel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Vinciguerra
@@ -55,12 +55,12 @@ files:
55
55
  - lib/feature_channel/subscriber/message_processor.rb
56
56
  - lib/feature_channel/version.rb
57
57
  - playground.rb
58
- homepage: https://github.com/dvinciguerra
58
+ homepage: https://github.com/dvinciguerra/feature_channel
59
59
  licenses:
60
60
  - MIT
61
61
  metadata:
62
- homepage_uri: https://github.com/dvinciguerra
63
- source_code_uri: https://github.com/dvinciguerra
62
+ homepage_uri: https://github.com/dvinciguerra/feature_channel
63
+ source_code_uri: https://github.com/dvinciguerra/feature_channel
64
64
  post_install_message:
65
65
  rdoc_options: []
66
66
  require_paths: