adequate_crypto_address 0.1.0

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
+ SHA256:
3
+ metadata.gz: 6302b9458662b0023b448f264c8ad93849200fe2a390d6db50fe194bdbbab8bb
4
+ data.tar.gz: bfac4cfc3eb5efa9e8f8ff20ab80215553e12ff5cd1a36829253291e1161b827
5
+ SHA512:
6
+ metadata.gz: 594bcbf0e964583725d9f8d89f1e1bcd17967304b5fad5134373ed696858a341c5cefe2b2e70a632619c5257f4f6504dbbb2658ce1327c21368814e48f67f8a5
7
+ data.tar.gz: c071bf3df98d6b06f07b7b4efada8bc8bf6b084d749c07ff8547ca67cdb0bf2f7cbe56884bebb432e9e534cae400796ff25760ae0c9631347f52d80274e3a4a3
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ Gemfile.lock
11
+
12
+ # rspec failure tracking
13
+ .rspec_status
14
+
15
+ # Spec artifacts
16
+ /coverage
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ ---
2
+ language: ruby
3
+ sudo: false
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.1
7
+ before_install: gem install bundler -v 1.16.3
8
+ script: bundle exec rspec spec
9
+ notifications:
10
+ email:
11
+ - vtmilyakov@yandex.ru
12
+
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ gem 'coveralls', '>= 0.8.17', require: false
6
+ gem 'pry', require: false
7
+
8
+ # Specify your gem's dependencies in adequate_crypto_address.gemspec
9
+ gemspec
data/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # AdequateCryptoAddress
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/money.svg)](https://rubygems.org/gems/money)
4
+ [![Build Status](https://travis-ci.org/RubyMoney/money.svg?branch=master)](https://travis-ci.org/RubyMoney/money)
5
+ [![Code Climate](https://codeclimate.com/github/RubyMoney/money.svg)](https://codeclimate.com/github/RubyMoney/money)
6
+ [![Coverage Status](https://coveralls.io/repos/RubyMoney/money/badge.svg?branch=master)](https://coveralls.io/r/RubyMoney/money?branch=master)
7
+ [![Inline docs](https://inch-ci.org/github/RubyMoney/money.svg)](https://inch-ci.org/github/RubyMoney/money)
8
+ [![Dependency Status](https://gemnasium.com/RubyMoney/money.svg)](https://gemnasium.com/RubyMoney/money)
9
+ [![License](https://img.shields.io/github/license/RubyMoney/money.svg)](https://opensource.org/licenses/MIT)
10
+
11
+
12
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/adequate_crypto_address`. To experiment with that code, run `bin/console` for an interactive prompt.
13
+
14
+ TODO: Delete this and the text above, and describe your gem
15
+
16
+ ## Installation
17
+
18
+ Add this line to your application's Gemfile:
19
+
20
+ ```ruby
21
+ gem 'adequate_crypto_address'
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install adequate_crypto_address
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here
35
+
36
+ ## Development
37
+
38
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39
+
40
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
41
+
42
+ ## Contributing
43
+
44
+
45
+ 1. Fork [the repo](https://github.com/vtm9/adequate_crypto_address)
46
+ 2. Grab dependencies: `bundle install`
47
+ 3. Make sure everything is working: `bundle exec rake spec`
48
+ 4. Make your changes
49
+ 5. Test your changes
50
+ 5. Create a Pull Request
51
+ 6. Celebrate!!!!!
52
+
53
+ ## Notes
54
+
55
+ Bug reports and pull requests are welcome on GitHub at https://github.com/vtm9/adequate_crypto_address/issues
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,22 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'adequate_crypto_address/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'adequate_crypto_address'
7
+ spec.version = AdequateCryptoAddress::VERSION
8
+ spec.authors = ['vtm']
9
+ spec.email = ['vtmilyakov@yandex.ru']
10
+
11
+ spec.summary = 'A Ruby Library for dealing with validation cryptocurrency adresses.'
12
+ spec.description = 'A Ruby Library for dealing with validation cryptocurrency adresses.'
13
+ spec.homepage = 'https://github.com/vtm9/adequate_crypto_address'
14
+
15
+ spec.license = 'MIT'
16
+ spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
17
+ spec.require_paths = ['lib']
18
+
19
+ spec.add_development_dependency 'bundler', '~> 1.16'
20
+ spec.add_development_dependency 'rake', '~> 10.0'
21
+ spec.add_development_dependency 'rspec', '~> 3.0'
22
+ end
@@ -0,0 +1,3 @@
1
+ module AdequateCryptoAddress
2
+ VERSION = '0.1.0'.freeze
3
+ end
@@ -0,0 +1,5 @@
1
+ require "adequate_crypto_address/version"
2
+
3
+ module AdequateCryptoAddress
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,5 @@
1
+ RSpec.describe AdequateCryptoAddress do
2
+ it 'has a version number' do
3
+ expect(AdequateCryptoAddress::VERSION).not_to be nil
4
+ end
5
+ end
@@ -0,0 +1,14 @@
1
+ require 'coveralls'
2
+ Coveralls.wear!
3
+
4
+ require 'rspec'
5
+ require 'adequate_crypto_address'
6
+
7
+ RSpec.configure do |config|
8
+ # Enable flags like --only-failures and --next-failure
9
+ config.example_status_persistence_file_path = '.rspec_status'
10
+
11
+ config.order = :random
12
+ config.filter_run :focus
13
+ config.run_all_when_everything_filtered = true
14
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: adequate_crypto_address
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - vtm
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-09-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: A Ruby Library for dealing with validation cryptocurrency adresses.
56
+ email:
57
+ - vtmilyakov@yandex.ru
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - README.md
67
+ - Rakefile
68
+ - adequate_crypto_address.gemspec
69
+ - lib/adequate_crypto_address.rb
70
+ - lib/adequate_crypto_address/version.rb
71
+ - spec/adequate_crypto_address_spec.rb
72
+ - spec/spec_helper.rb
73
+ homepage: https://github.com/vtm9/adequate_crypto_address
74
+ licenses:
75
+ - MIT
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.7.6
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: A Ruby Library for dealing with validation cryptocurrency adresses.
97
+ test_files: []