cloudwalk_handshake 0.4.2

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 76405d692a74e1c44c78a0250d1927fe690983c0
4
+ data.tar.gz: ea3ae8693d97b6939db09df2c8031aff54fe6545
5
+ SHA512:
6
+ metadata.gz: 80327fce97480baaeaca38b1b4d4bc82646df9bf366483af5d9733aa573a87a007e832becb080001c1c1c9f53bbf960ddd8da9bc1b000047c81bb9598ef87ddb
7
+ data.tar.gz: 1f841538fb8d154afc7e952f7f6e1952bb3d99f59dd74923d785381f406755e193c73819a7c1bbf133284e1535c23fadc872c9838ad8067395ea60a6a32daf04
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ out
2
+ out/*
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'da_funk', :git => 'https://github.com/cloudwalkio/da_funk.git'
4
+ gem 'simplehttp', :git => 'https://github.com/scalone/walk-simplehttp-poc.git'
5
+
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,36 @@
1
+ GIT
2
+ remote: https://github.com/cloudwalkio/da_funk.git
3
+ revision: 634d918c785b0e34a95ff0be587a562760e627e3
4
+ specs:
5
+ da_funk (0.4.9)
6
+ bundler (~> 1.7)
7
+ cloudwalk_handshake (~> 0.3)
8
+ rake (~> 10.4)
9
+ yard (~> 0.8)
10
+
11
+ GIT
12
+ remote: https://github.com/scalone/walk-simplehttp-poc.git
13
+ revision: faff47627d0308f5a3083f35767d594533c5ab1b
14
+ specs:
15
+ simplehttp (0.3.1)
16
+
17
+ PATH
18
+ remote: .
19
+ specs:
20
+ cloudwalk_handshake (0.4.2)
21
+
22
+ GEM
23
+ remote: https://rubygems.org/
24
+ specs:
25
+ rake (10.4.2)
26
+ yard (0.8.7.6)
27
+
28
+ PLATFORMS
29
+ ruby
30
+
31
+ DEPENDENCIES
32
+ bundler (~> 1.7)
33
+ cloudwalk_handshake!
34
+ da_funk!
35
+ rake (~> 10.0)
36
+ simplehttp!
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # CloudWalk Handshake
2
+
3
+ Implements
4
+
5
+ - Base32 algorithm.
6
+
7
+ - TOTP authentication.
8
+
9
+ - CloudWalk handshake.
10
+
11
+ ## Contributing
12
+
13
+ 1. Fork it
14
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
15
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
16
+ 4. Push to the branch (`git push origin my-new-feature`)
17
+ 5. Create new Pull Request
18
+
19
+ # License
20
+
21
+ All rights reserved to CloudWalk LTDA.
data/RELEASE_NOTES.md ADDED
@@ -0,0 +1,16 @@
1
+ # CloudWalk Handshake
2
+
3
+ ### 0.4.2 - 2014-09-29 - License
4
+
5
+ - Change lincense.
6
+ - Add support to generate gem file to upload to rubygems.org.
7
+
8
+ ### 0.4.1 - 2014-08-05 - Fix non ssl socket use
9
+
10
+ - Fix non ssl socket use
11
+
12
+ ### 0.4.0 - 2014-08-04 - Update Dafunk Version
13
+
14
+ - Update DaFunk version to 0.4.9.
15
+
16
+ ### 0.3.0 - 2014-08-04 - First stable Version
data/Rakefile ADDED
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env rake
2
+
3
+ require 'rake'
4
+ require 'fileutils'
5
+ require 'bundler/setup'
6
+
7
+ Bundler.require(:default)
8
+
9
+ DaFunk::RakeTask.new do |t|
10
+ t.mrbc = "cloudwalk compile"
11
+ t.mruby = "cloudwalk run"
12
+ end
13
+
14
+ desc "Generate cloudwalk_handshake gem to upload to RubyGems.org. "
15
+ task :gem do
16
+ puts "Be careful this action will delete and checkout lib/cloudwalk_handshake.rb"
17
+ input = ""
18
+ while (input != "y" && input != "n") do
19
+ puts "Are you sure? (Y/N)"
20
+ input = STDIN.gets.to_s.chomp.downcase
21
+ end
22
+
23
+ if input == "y"
24
+ sh "rm -f lib/cloudwalk_handshake.rb"
25
+ sh "gem build cloudwalk_handshake.gemspec"
26
+ sh "git checkout -- lib/cloudwalk_handshake.rb"
27
+ end
28
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'version.rb'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cloudwalk_handshake"
8
+ spec.version = CloudwalkHandshake.version
9
+ spec.authors = ["Thiago Scalone"]
10
+ spec.email = ["thiago@cloudwalk.io"]
11
+ spec.summary = "CloudWalk Handshake"
12
+ spec.description = "CloudWalk Handshake to perform transactions and content download"
13
+ spec.homepage = "http://cloudwalk.io"
14
+ spec.license = "MIT"
15
+ spec.files = %w(.gitignore Gemfile Gemfile.lock RELEASE_NOTES.md README.md Rakefile cloudwalk_handshake.gemspec lib/version.rb out/cloudwalk_handshake/main.mrb)
16
+ spec.extensions = []
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
data/lib/version.rb ADDED
@@ -0,0 +1,6 @@
1
+
2
+ class CloudwalkHandshake
3
+ def self.version
4
+ "0.4.2"
5
+ end
6
+ end
Binary file
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cloudwalk_handshake
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2
5
+ platform: ruby
6
+ authors:
7
+ - Thiago Scalone
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-29 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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
+ description: CloudWalk Handshake to perform transactions and content download
42
+ email:
43
+ - thiago@cloudwalk.io
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - Gemfile
50
+ - Gemfile.lock
51
+ - README.md
52
+ - RELEASE_NOTES.md
53
+ - Rakefile
54
+ - cloudwalk_handshake.gemspec
55
+ - lib/version.rb
56
+ - out/cloudwalk_handshake/main.mrb
57
+ homepage: http://cloudwalk.io
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.2.2
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: CloudWalk Handshake
81
+ test_files: []
82
+ has_rdoc: