bitcoin 0.1.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.
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use 1.9.2@bitcoin
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in bitcoin.gemspec
4
+ gemspec
@@ -0,0 +1,46 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bitcoin (0.0.1)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ builder (3.0.0)
10
+ cucumber (1.0.2)
11
+ builder (>= 2.1.2)
12
+ diff-lcs (>= 1.1.2)
13
+ gherkin (~> 2.4.5)
14
+ json (>= 1.4.6)
15
+ term-ansicolor (>= 1.0.5)
16
+ diff-lcs (1.1.2)
17
+ gherkin (2.4.5)
18
+ json (>= 1.4.6)
19
+ growl (1.0.3)
20
+ guard (0.5.1)
21
+ thor (~> 0.14.6)
22
+ json (1.5.3)
23
+ rake (0.9.2)
24
+ rb-fsevent (0.4.1)
25
+ rspec (2.6.0)
26
+ rspec-core (~> 2.6.0)
27
+ rspec-expectations (~> 2.6.0)
28
+ rspec-mocks (~> 2.6.0)
29
+ rspec-core (2.6.4)
30
+ rspec-expectations (2.6.0)
31
+ diff-lcs (~> 1.1.2)
32
+ rspec-mocks (2.6.0)
33
+ term-ansicolor (1.0.6)
34
+ thor (0.14.6)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ bitcoin!
41
+ cucumber
42
+ growl
43
+ guard
44
+ rake
45
+ rb-fsevent
46
+ rspec
@@ -0,0 +1,25 @@
1
+ Copyright 2011 Ash Moran ("the copyright holder"). All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are
4
+ permitted provided that the following conditions are met:
5
+
6
+ 1. Redistributions of source code must retain the above copyright notice, this list of
7
+ conditions and the following disclaimer.
8
+
9
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list
10
+ of conditions and the following disclaimer in the documentation and/or other materials
11
+ provided with the distribution.
12
+
13
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ''AS IS'' AND ANY EXPRESS OR IMPLIED
14
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
15
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
16
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
17
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
18
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
19
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
20
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
+
23
+ The views and conclusions contained in the software and documentation are those of the
24
+ authors and should not be interpreted as representing official policies, either expressed
25
+ or implied, of the copyright holder.
@@ -0,0 +1,5 @@
1
+ # Bitcoin
2
+
3
+ A Bitcoin client written in Ruby
4
+
5
+ This is currently just a stub project
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -0,0 +1 @@
1
+ #!/usr/bin/env ruby
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "bitcoin/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "bitcoin"
7
+ s.version = Bitcoin::VERSION
8
+ s.authors = ["Ash Moran"]
9
+ s.email = ["ash.moran@patchspace.co.uk"]
10
+ s.homepage = "http://bitcoinrb.info/"
11
+ s.summary = "kwoon-#{Bitcoin::VERSION}"
12
+ s.description = "Bitcoin client"
13
+
14
+ # s.rubyforge_project = "bitcoin"
15
+
16
+ s.add_development_dependency("rake")
17
+ s.add_development_dependency("cucumber")
18
+ s.add_development_dependency("rspec")
19
+ s.add_development_dependency("guard")
20
+ s.add_development_dependency("rb-fsevent")
21
+ s.add_development_dependency("growl")
22
+
23
+ # `darcs show files` lists directories unlike `git ls-files`, so we exclude them here
24
+ s.files = `darcs show files`.split("\n").select { |file| File.file?(file) }
25
+ s.test_files = `darcs show files {features,spec}/*`.split("\n").select { |file| File.file?(file) }
26
+ s.executables = `darcs show files bin/*`.split("\n").select { |file| File.file?(file) }.map { |file| File.basename(file) }
27
+ s.require_paths = ["lib"]
28
+ end
@@ -0,0 +1,5 @@
1
+ <%
2
+ std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip"
3
+ %>
4
+ default: <%= std_opts %> features
5
+ wip: --tags @wip:3 --wip features
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler.setup
@@ -0,0 +1,5 @@
1
+ require "bitcoin/version"
2
+
3
+ module Bitcoin
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Bitcoin
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1 @@
1
+ Bundler.setup
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bitcoin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Ash Moran
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-07-21 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &70357823105820 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70357823105820
25
+ - !ruby/object:Gem::Dependency
26
+ name: cucumber
27
+ requirement: &70357823105400 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70357823105400
36
+ - !ruby/object:Gem::Dependency
37
+ name: rspec
38
+ requirement: &70357823135940 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70357823135940
47
+ - !ruby/object:Gem::Dependency
48
+ name: guard
49
+ requirement: &70357823135520 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *70357823135520
58
+ - !ruby/object:Gem::Dependency
59
+ name: rb-fsevent
60
+ requirement: &70357823135100 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ type: :development
67
+ prerelease: false
68
+ version_requirements: *70357823135100
69
+ - !ruby/object:Gem::Dependency
70
+ name: growl
71
+ requirement: &70357823134680 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: *70357823134680
80
+ description: Bitcoin client
81
+ email:
82
+ - ash.moran@patchspace.co.uk
83
+ executables:
84
+ - rbcoin
85
+ extensions: []
86
+ extra_rdoc_files: []
87
+ files:
88
+ - ./.rspec
89
+ - ./.rvmrc
90
+ - ./Gemfile
91
+ - ./Gemfile.lock
92
+ - ./LICENCE.markdown
93
+ - ./README.markdown
94
+ - ./Rakefile
95
+ - ./bitcoin.gemspec
96
+ - ./bin/rbcoin
97
+ - ./config/cucumber.yml
98
+ - ./features/support/env.rb
99
+ - ./lib/bitcoin.rb
100
+ - ./lib/bitcoin/version.rb
101
+ - ./spec/spec_helper.rb
102
+ - bin/rbcoin
103
+ homepage: http://bitcoinrb.info/
104
+ licenses: []
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ none: false
111
+ requirements:
112
+ - - ! '>='
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ! '>='
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 1.8.5
124
+ signing_key:
125
+ specification_version: 3
126
+ summary: kwoon-0.1.0
127
+ test_files:
128
+ - ./features/support/env.rb
129
+ - ./spec/spec_helper.rb