bitsy-bitcoin 0.2.1 → 0.3.0

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: c36890f633ebc3dada866f76325e501f00cc19f0
4
- data.tar.gz: 294c155f1489ee04a618af14dbb011ccae0d7e9b
3
+ metadata.gz: 849b89c147bb11b16bc2b109d3b1ae3488e1970a
4
+ data.tar.gz: 764da3e8d74fcc49ec21e2afbe3314c4f343744e
5
5
  SHA512:
6
- metadata.gz: 043be2aa335f798f6aed28a20f94d8caa549c00665599c342ac52f5fe9ba38391c2aa70466856b847e1f48f59bfd2b0e610fd4edce10d39b2205d186df8ec533
7
- data.tar.gz: 38218e606e4e72f9012f1fb046c476a90dcacdada9832445cc4ab75a3d84143a3926960d00c5c9adebf9523ab16a75d83eae31979905c7f5bf36c26f0888b5be
6
+ metadata.gz: 58d98db718f82b2c67cbdd980f380edc35b77e631402b891b21fc07950f5dac1e34b15d1e61fd43f60cc341bcd77eb572b2e0a7dbd8b1ef67462800f56c0c00c
7
+ data.tar.gz: 119be683f3f9e53b7995aa17b9a253c26b50a103189eb633ff22a6ae6a51052481801f99d9e21b8c034b3deaae089167ce18c4660c522a468dd9d240bf57ebdc
data/config/bitsy.yml CHANGED
@@ -4,6 +4,7 @@ defaults: &defaults
4
4
  password: Ye054oH96zSueHnVHLAAWwwM9
5
5
  second_password:
6
6
  api_code:
7
+ redis_url: 'redis://localhost:6379'
7
8
 
8
9
  development:
9
10
  <<: *defaults
@@ -14,3 +14,11 @@ Bitsy.configure do |c|
14
14
  # like this http://app.com/bitsy/v1/blockchain_notifications?secret=mysecret
15
15
  c.blockchain_secrets = %w(secret)
16
16
  end
17
+
18
+ Sidekiq.configure_server do |config|
19
+ config.redis = { url: Bitsy.config.redis_url }
20
+ end
21
+
22
+ Sidekiq.configure_client do |config|
23
+ config.redis = { url: Bitsy.config.redis_url }
24
+ end
data/lib/bitsy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Bitsy
2
- VERSION = "0.2.1"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -4,6 +4,7 @@ defaults: &defaults
4
4
  password: password123
5
5
  second_password: if any
6
6
  api_code: if any
7
+ redis_url: 'redis://localhost:6379'
7
8
 
8
9
  development:
9
10
  <<: *defaults
@@ -15,3 +15,11 @@ Bitsy.configure do |c|
15
15
  # like this http://app.com/bitsy/v1/blockchain_notifications?secret=mysecret
16
16
  c.blockchain_secrets = %w(secret)
17
17
  end
18
+
19
+ Sidekiq.configure_server do |config|
20
+ config.redis = { url: Bitsy.config.redis_url }
21
+ end
22
+
23
+ Sidekiq.configure_client do |config|
24
+ config.redis = { url: Bitsy.config.redis_url }
25
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitsy-bitcoin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-12 00:00:00.000000000 Z
11
+ date: 2014-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails