chan_pay 0.3.0 → 0.4.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 +4 -4
- data/.gitignore +1 -0
- data/Rakefile +10 -0
- data/lib/chan_pay/api/query_balance.rb +1 -0
- data/lib/chan_pay/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f28321ff6a9623326627794cc1554539693e93d
|
4
|
+
data.tar.gz: 527a2bad75b12f1727141372670dff7efdc3c169
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 964922ce8620dc43d79b44e6e3dff58ff5c4d2f276a0f2b76aed0712a4f55d5a5367e43e0274b0fde1dac5829bf028b254e162388adcd8b9aaa172e4f17e8d27
|
7
|
+
data.tar.gz: 9b03c8adf50c2db886015556c096561f6fc88775a1d10a4b59f553bd1cdc7c921dd61aceb83be2b13d3996ac9fbccfce080fd1ede84f2ab2f824d92042e178be
|
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -4,3 +4,13 @@ require "rspec/core/rake_task"
|
|
4
4
|
RSpec::Core::RakeTask.new(:spec)
|
5
5
|
|
6
6
|
task :default => :spec
|
7
|
+
|
8
|
+
task :build do
|
9
|
+
puts `gem build chan_pay.gemspec`
|
10
|
+
end
|
11
|
+
|
12
|
+
task :push do
|
13
|
+
puts `gem push chan_pay-#{ChanPay::VERSION}.gem`
|
14
|
+
end
|
15
|
+
|
16
|
+
task :publish => [:build, :push]
|
data/lib/chan_pay/version.rb
CHANGED