cloudwalk_handshake 0.5.1 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3735e59fb38603b52d463aab6e73467e6065db98
4
- data.tar.gz: 801cd4667e7e07c70515998d77ff3ad0567af96f
3
+ metadata.gz: 16d7e15467c178c90643c56ac1dd7dc461fec5ab
4
+ data.tar.gz: 7e362635fa566a1c141af2a2f1b1e415262ec230
5
5
  SHA512:
6
- metadata.gz: 78f1a8a9036adcb21710ea920655bb51e9d6227a8e73b1ce224a6a1d123cb19fa626b558ec9ff6c8a27c22369e2324bd9c857bede9ef546b6e232907f8695280
7
- data.tar.gz: 32e460bce1557ba733ab71c6da8cc6dac473080aff70b96167b8546410691a4d073e0f28204aa396c5aa1cda68703e0878f0fa52deca908caba5ef5adf5512f6
6
+ metadata.gz: 9487711c85a423b6c86f46f1406183c964455a67886eb71f4300ed2541f12fb00088738d138bd39f095db2c7e500641949650271728f1011faabcbeee405e10a
7
+ data.tar.gz: 94af8365d4299620fa35689c051854df8b2cc3c23cb6661be73551663a0d2022593075f1854c0ebf9fb1ce0516fe0464f100a8946902d7f60e265ea8d73ea279
data/Gemfile CHANGED
@@ -1,6 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'da_funk', '~>0.5', :git => 'https://github.com/cloudwalkio/da_funk.git'
4
- gem 'simplehttp', :git => 'https://github.com/scalone/walk-simplehttp-poc.git'
3
+ gem 'da_funk', '~>0.5'
5
4
 
6
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,28 +1,19 @@
1
- GIT
2
- remote: https://github.com/cloudwalkio/da_funk.git
3
- revision: 6762e4d09af9fc698c4fe5cc2adaebde2ef389a1
4
- specs:
5
- da_funk (0.5.2)
6
- bundler (~> 1.7)
7
- cloudwalk_handshake (~> 0.4)
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
1
  PATH
18
2
  remote: .
19
3
  specs:
20
- cloudwalk_handshake (0.5.1)
4
+ cloudwalk_handshake (0.5.2)
21
5
 
22
6
  GEM
23
7
  remote: https://rubygems.org/
24
8
  specs:
25
- rake (10.4.2)
9
+ da_funk (0.6.2)
10
+ bundler (~> 1.7)
11
+ cloudwalk_handshake (~> 0.5)
12
+ posxml_parser (~> 0.6)
13
+ rake (~> 10.4)
14
+ yard (~> 0.8)
15
+ posxml_parser (0.7.2)
16
+ rake (10.5.0)
26
17
  yard (0.8.7.6)
27
18
 
28
19
  PLATFORMS
@@ -31,6 +22,5 @@ PLATFORMS
31
22
  DEPENDENCIES
32
23
  bundler (~> 1.7)
33
24
  cloudwalk_handshake!
34
- da_funk (~> 0.5)!
25
+ da_funk (~> 0.5)
35
26
  rake (~> 10.0)
36
- simplehttp!
data/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CloudWalk Handshake
2
2
 
3
+ ### 0.5.2 - 2016-02-12 - Remove simplehttp dependecy
4
+
5
+ - Remove simplehttp dependency.
6
+
3
7
  ### 0.5.1 - 2016-01-06 - CloudWalk Handshake Version 3.0.
4
8
 
5
9
  - CloudawlkSocket#write return the number of bytes
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ Bundler.require(:default)
9
9
  DaFunk::RakeTask.new do |t|
10
10
  t.debug = false
11
11
  t.mrbc = "cloudwalk compile"
12
- #t.mruby = "mruby -b"
12
+ t.mruby = "cloudwalk run"
13
13
  end
14
14
 
15
15
  desc "Generate cloudwalk_handshake gem to upload to RubyGems.org. "
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = "CloudWalk Handshake"
12
12
  spec.description = "CloudWalk Handshake to perform transactions and content download"
13
13
  spec.homepage = "http://cloudwalk.io"
14
- spec.license = ""
14
+ spec.license = "Apache License 2.0"
15
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
16
  spec.extensions = []
17
17
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
data/lib/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
 
2
2
  class CloudwalkHandshake
3
3
  def self.version
4
- "0.5.1"
4
+ "0.5.2"
5
5
  end
6
6
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudwalk_handshake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Scalone
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-05 00:00:00.000000000 Z
11
+ date: 2016-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,7 +56,7 @@ files:
56
56
  - out/cloudwalk_handshake/main.mrb
57
57
  homepage: http://cloudwalk.io
58
58
  licenses:
59
- - ''
59
+ - Apache License 2.0
60
60
  metadata: {}
61
61
  post_install_message:
62
62
  rdoc_options: []