rails_bitcoin 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0c1008b59666bf29dce087ce9647eeb3ccf650f0
4
+ data.tar.gz: 2eabe96fdd109a92794fe39fad119dc2322db5dc
5
+ SHA512:
6
+ metadata.gz: d1f482f9570bfd72370df02c1e0dc8f52a4b65863e92ee6cdded59e0e413b0a61b1beb82ec525a867e09fc77ac9fdacb4d30b9f2621cb8199858737f28c5b49d
7
+ data.tar.gz: 8ea252d5f31d81711b3008923ed9b497fa3e8cff3a1f3331b007cef6ebe1264319d76159b3db81ea9baadd2210aec5c5680df8215a167226dee07cc7edacc991
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = RailsBitcoin
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'RailsBitcoin'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
22
+ require 'rake/testtask'
23
+
24
+ Rake::TestTask.new(:test) do |t|
25
+ t.libs << 'lib'
26
+ t.libs << 'test'
27
+ t.pattern = 'test/**/*_test.rb'
28
+ t.verbose = false
29
+ end
30
+
31
+
32
+ task default: :test
@@ -0,0 +1,7 @@
1
+ class BitcoinAddressValidator < ActiveModel::EachValidator
2
+ def validate_each(record, attribute, value)
3
+ unless Bitcoin.valid_address?(value)
4
+ record.errors.add(attribute, :invalid, options)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,25 @@
1
+ class BitcoinSignatureValidator < ActiveModel::EachValidator
2
+ def validate_each(record, attribute, value)
3
+ unless Bitcoin.valid_address?(value)
4
+ default_options = {:verify_message => :message, :verify_address => :address}
5
+ options = default_options.merge(options || {})
6
+
7
+ msg = options[:verify_message]
8
+ add = options[:verify_address]
9
+
10
+ raise "Not found #{msg} in object" unless record.respond_to? msg
11
+ raise "Not found #{add} in object" unless record.respond_to? add
12
+
13
+ msg_val = record.send(msg)
14
+ add_val = record.send(add)
15
+
16
+ begin
17
+ key = Bitcoin::Key.recover_compact_signature_to_key(msg_val, value)
18
+ raise if !key || key.addr != add_val
19
+ rescue
20
+ record.errors.add(attribute, :verify, options)
21
+ end
22
+ end
23
+ end
24
+ end
25
+
@@ -0,0 +1,3 @@
1
+ module RailsBitcoin
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'bitcoin'
2
+ require 'rails_bitcoin/bitcoin_address_validator'
3
+ require 'rails_bitcoin/bitcoin_signature_validator'
4
+ require 'rails_bitcoin/version'
5
+
6
+ module RailsBitcoin
7
+ end
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_bitcoin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - hpyhacking
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: ffi
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 1.9.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 1.9.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: bitcoin-ruby
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 0.0.1
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.0.1
55
+ description: bitcoin address validator, sign message validator.
56
+ email:
57
+ - crazyflapjack@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - lib/rails_bitcoin/bitcoin_address_validator.rb
63
+ - lib/rails_bitcoin/bitcoin_signature_validator.rb
64
+ - lib/rails_bitcoin/version.rb
65
+ - lib/rails_bitcoin.rb
66
+ - MIT-LICENSE
67
+ - Rakefile
68
+ - README.rdoc
69
+ homepage: https://github.com/peatio/rails-bitcoin
70
+ licenses: []
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubyforge_project:
88
+ rubygems_version: 2.0.3
89
+ signing_key:
90
+ specification_version: 4
91
+ summary: Bitcoin Tools in Rails.
92
+ test_files: []