bitstamp-realtime 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: 1b90310a67af8d8a6a12a366a57a973e1d16f776
4
+ data.tar.gz: a41ff906894a7141bf20a71f271daf52e117920a
5
+ SHA512:
6
+ metadata.gz: 85307d3b7146d00d9acb0d945b2f1e45abb321f042a3a69d1c579198f75cb0b90d0274ebab1ff7f587fe471bce32da1c901833587fa723e2edcb31b50e50d73b
7
+ data.tar.gz: 60863c2f07e8a6b570799c570ad74ceb212c08528da447630adf8f16092e4012185cb3b63921a5a804c7bdb7fac68b6be15bacb2b17e6db5b908c71fb19c5d4a
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ doc/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'turn'
4
+ gem 'shoulda'
5
+ gem 'vcr'
6
+
7
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,40 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bitstamp-realtime (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ activesupport (4.0.1)
10
+ i18n (~> 0.6, >= 0.6.4)
11
+ minitest (~> 4.2)
12
+ multi_json (~> 1.3)
13
+ thread_safe (~> 0.1)
14
+ tzinfo (~> 0.3.37)
15
+ ansi (1.4.3)
16
+ atomic (1.1.14)
17
+ i18n (0.6.5)
18
+ minitest (4.7.5)
19
+ multi_json (1.8.2)
20
+ shoulda (3.5.0)
21
+ shoulda-context (~> 1.0, >= 1.0.1)
22
+ shoulda-matchers (>= 1.4.1, < 3.0)
23
+ shoulda-context (1.1.6)
24
+ shoulda-matchers (2.4.0)
25
+ activesupport (>= 3.0.0)
26
+ thread_safe (0.1.3)
27
+ atomic
28
+ turn (0.9.6)
29
+ ansi
30
+ tzinfo (0.3.38)
31
+ vcr (2.7.0)
32
+
33
+ PLATFORMS
34
+ ruby
35
+
36
+ DEPENDENCIES
37
+ bitstamp-realtime!
38
+ shoulda
39
+ turn
40
+ vcr
data/LICENSE ADDED
@@ -0,0 +1,3 @@
1
+ Creative Commons Attribution-ShareAlike 3.0 Unported License
2
+
3
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ bitstamp-realtime
2
+ =================
3
+
4
+ Ruby implementation of BitStamp API, with support for near-realtime feeding.
5
+
6
+ # This is work in progress
7
+ (not even alpha-ready)
8
+
9
+ ## Supported rubies
10
+
11
+ Tested with 2.0.0p247, although any issue with Ruby 1.9.2+ should be considered a bug.
12
+
13
+ ## Contributing
14
+
15
+ In the spirit of free software, *everyone* is encouraged to help improve this project.
16
+
17
+ Here are some ways you can contribute:
18
+
19
+ * By reporting bugs
20
+ * By suggesting new features
21
+ * By writing or editing documentation
22
+ * By writing specifications
23
+ * By writing code (*no patch is too small:* fix typos, add comments, clean up inconsistent whitespace)
24
+ * By refactoring code
25
+ * By closing issues
26
+ * By reviewing patches
27
+
28
+ ## Copyright
29
+
30
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Bitstamp RealTime</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://github.com/mikaelwikman" property="cc:attributionName" rel="cc:attributionURL">Mikael Wikman</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/deed.en_US">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="https://github.com/mikaelwikman/bitstamp-realtime" rel="dct:source">https://github.com/mikaelwikman/bitstamp-realtime</a>.
data/app.gemspec ADDED
@@ -0,0 +1,16 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.authors = ['Mikael Wikman']
5
+ gem.email = ['mikael@wikman.me']
6
+ gem.summary = %q{Ruby implementation of BitStamp API, with support for near-realtime feeding.}
7
+ gem.description = %Q{}
8
+ gem.homepage = "https://github.com/mikaelwikman/bitstamp-realtime"
9
+
10
+ gem.files = `git ls-files`.split("\n")
11
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
12
+ gem.test_files = gem.files.grep(%r{^(test|features)/})
13
+ gem.name = "bitstamp-realtime"
14
+ gem.require_paths = ["lib"]
15
+ gem.version = '0.0.1'
16
+ end
File without changes
@@ -0,0 +1,12 @@
1
+ require 'bundler/setup'
2
+ require 'test/unit'
3
+ require 'turn/autorun'
4
+ require 'shoulda'
5
+ require 'mocha/setup'
6
+
7
+ Turn.config.format = :dot
8
+
9
+ $LOAD_PATH << 'lib'
10
+
11
+ class TestCase < Test::Unit::TestCase
12
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bitstamp-realtime
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Mikael Wikman
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: ''
14
+ email:
15
+ - mikael@wikman.me
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - .gitignore
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - LICENSE
24
+ - README.md
25
+ - app.gemspec
26
+ - lib/bitstamp_realtime.rb
27
+ - test/test_helper.rb
28
+ homepage: https://github.com/mikaelwikman/bitstamp-realtime
29
+ licenses: []
30
+ metadata: {}
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 2.0.3
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Ruby implementation of BitStamp API, with support for near-realtime feeding.
51
+ test_files:
52
+ - test/test_helper.rb