telehash 0.0.1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c08e6ad0ed1cf30dad7b8c4e093e559d046405a3
4
+ data.tar.gz: 24f347c20970b23a8ff1f00be3867cae45568ddd
5
+ SHA512:
6
+ metadata.gz: 8d1825582cdde5c78bccb82222d15589c4258b0f2c3b0a66c332b2b2a65fa5c45e44fdbb8e329ce00b169bb84ffe88b4a1fb7a58b971a7b801f7c36b2529a1a4
7
+ data.tar.gz: 861b2557df1993fc8bdc359c5189239b76d3881405d9e2e794c0d5fd97a5046e2c281aeed0b8f2417799b6eae983b773ae8c51b1e938ac2339857c905f7dd19b
@@ -0,0 +1,2 @@
1
+ P��2����-5S(�$�x2g�;��)}��׳Q�����7)��p/�3�K�{.p��ҭl�����5�ĽifVr��z^3-}����%Q[�i���'r���zR���]�?b�+���������gN�3����~4�������npR�ƃ�Z����r��)C� �ٷ����$9�
2
+ n�
@@ -0,0 +1,2 @@
1
+ s|3�~�o�m� .�Yk:��V��X�/ei&����o�^��Q�<6\��tUJ&!����(��Fn���Q��
2
+ 5<�/��ުl�1(�J>+0b��Q��o�`�Y�gh ��N5���ľqۗ�Y�X������b��=,p���?}�(����؆-O|����S���ƫjV[Q[ry<t��a��G�.Лzڿ����R�$Cӳ'�jv]�s@�7<���w���\F�;u�&��
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in telehash.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 TODO: Write your name
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Telehash
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'telehash'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install telehash
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ require "telehash/version"
2
+
3
+ module Telehash
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Telehash
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'telehash/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "telehash"
8
+ spec.version = Telehash::VERSION
9
+ spec.authors = ["David Waite"]
10
+ spec.email = ["david@alkaline-solutions.com"]
11
+ spec.summary = %q{Implementation of the Telehash protocol}
12
+ spec.description = %q{Implementation of the Telehash protocol. See http://www.telehash.org}
13
+ spec.homepage = "http://www.telehash.org/"
14
+ spec.license = "MIT"
15
+
16
+
17
+ signing_key = Dir.glob(Dir.home + '/.gem/keys/*private*.pem').first
18
+ chain = Dir.glob(Dir.home + '/.gem/keys/*public*.pem')
19
+ if signing_key
20
+ spec.signing_key = signing_key
21
+ spec.cert_chain = chain
22
+ end
23
+
24
+ spec.files = `git ls-files`.split($/)
25
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
26
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.3"
30
+ spec.add_development_dependency "rake"
31
+ end
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: telehash
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Waite
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDmjCCAoKgAwIBAgIBATANBgkqhkiG9w0BAQUFADBJMQ4wDAYDVQQDDAVkYXZp
14
+ ZDEiMCAGCgmSJomT8ixkARkWEmFsa2FsaW5lLXNvbHV0aW9uczETMBEGCgmSJomT
15
+ 8ixkARkWA2NvbTAeFw0xMzA4MTgwMTM4NTFaFw0xNDA4MTgwMTM4NTFaMEkxDjAM
16
+ BgNVBAMMBWRhdmlkMSIwIAYKCZImiZPyLGQBGRYSYWxrYWxpbmUtc29sdXRpb25z
17
+ MRMwEQYKCZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
18
+ CgKCAQEAwOHESw1YIiL2Yzjeu/gMVtKY773Pmh8/Ww+D12rjb7kc/OgTe2HyfDw0
19
+ xDEeo+VvTEtSgLaEBwWKqPYNpPtz1YJOt6Jh36VwMTiQ78KDAF+zZSRTlCK2QzG+
20
+ Wt4bIRBotG67tNnn548K1i49DboZsJ0xn1ZpWVxD9ncoR/lnvVtIly8Fmp4K8xXS
21
+ 6VpawJOQ6azEv/qPO6gXd8UfgzGgIdxwZqp6E9R83ZOBNPSIw/LdRpaDSr4xmCUi
22
+ E27Wir1l+MuDkqDqIw9QFkRvBe6yNUuVfOD8yxZAWGQ6jQrmbxaAmzHV8pg1d4Vb
23
+ e4PzRwc3jyR/uZpUR1V6CzwU1r0S9QIDAQABo4GMMIGJMAkGA1UdEwQCMAAwCwYD
24
+ VR0PBAQDAgSwMB0GA1UdDgQWBBSQuiCMFvqUXsckh29KxOzLh3eopTAnBgNVHREE
25
+ IDAegRxkYXZpZEBhbGthbGluZS1zb2x1dGlvbnMuY29tMCcGA1UdEgQgMB6BHGRh
26
+ dmlkQGFsa2FsaW5lLXNvbHV0aW9ucy5jb20wDQYJKoZIhvcNAQEFBQADggEBALVz
27
+ aiRc3zRA66ENr7GQGbdcX4MRtsECW4I1asIPUEwcg1cKI1tkE97GJjiwWhgREn8z
28
+ 6Y6ykz2wYIIHTTWGkYWjyP3nRz67NNKLZ9u2MCUY8XItHUP9eLLTE5Vp60AbpMX/
29
+ LgsKyDcUpXdBCA4EPRy54ASCuDchFkppRL3NsKOouOf99F6sOzYJ1CpDWQYrpUEG
30
+ UY55wVy74Rs9j3tn/UVa55yqYYCgovrgwMOKoOV+tdyMFiy7dwpWXf45VvBz5826
31
+ tWFvzXYmbmLKmSQeXoAGFXq7UQ4humOinrZVsSdL6BzZg6/kMZrXJ2IwtRzbzanU
32
+ JgsRT/L5zpRRpB2pODQ=
33
+ -----END CERTIFICATE-----
34
+ date: 2013-08-18 00:00:00.000000000 Z
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: bundler
38
+ requirement: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ~>
41
+ - !ruby/object:Gem::Version
42
+ version: '1.3'
43
+ type: :development
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ~>
48
+ - !ruby/object:Gem::Version
49
+ version: '1.3'
50
+ - !ruby/object:Gem::Dependency
51
+ name: rake
52
+ requirement: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ description: Implementation of the Telehash protocol. See http://www.telehash.org
65
+ email:
66
+ - david@alkaline-solutions.com
67
+ executables: []
68
+ extensions: []
69
+ extra_rdoc_files: []
70
+ files:
71
+ - .gitignore
72
+ - Gemfile
73
+ - LICENSE.txt
74
+ - README.md
75
+ - Rakefile
76
+ - lib/telehash.rb
77
+ - lib/telehash/version.rb
78
+ - telehash.gemspec
79
+ homepage: http://www.telehash.org/
80
+ licenses:
81
+ - MIT
82
+ metadata: {}
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ required_rubygems_version: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ requirements: []
98
+ rubyforge_project:
99
+ rubygems_version: 2.0.3
100
+ signing_key:
101
+ specification_version: 4
102
+ summary: Implementation of the Telehash protocol
103
+ test_files: []
Binary file