Breinify 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 834380f85b20847ad9a4a84b990c53cd07c000a1
4
- data.tar.gz: 963f53dde61eb7b60c1adb2b50b529b956c198b4
3
+ metadata.gz: cf5392a6679d6b10894f7d9edf7f4debe08f2986
4
+ data.tar.gz: ade9f86a134fb13c853ee943edfcd774d97dedb1
5
5
  SHA512:
6
- metadata.gz: 902830b56e1ed24c50ee283af0e17e70571e5edd6d197229d593d008c1f074b403560f05d1582f03c26dcbdf7ffdf045a975ac0b0e95c0151c817ebc71f54cc7
7
- data.tar.gz: 3a8c276d5c353ddda12939c6f843a05d09c22a34383bf848cc8ffcbcec745331c0f3afce00207b726797593a7fb1ca60529089523859b15894e6baf95a364f63
6
+ metadata.gz: 8c883cd84e949df17d0c3c0462129482cec2666ec15048ceb35acfa8b339b71e0028ca553c14c127aed3becdeea88da100f3da909e995643386d9feb058c0ca7
7
+ data.tar.gz: efd03992099f0c45965d6baa72459e768d6764d20edb03d9bc0438821dd5b9cb0fa952583e1f15ce62c85382ed7bec8371233ad39bc5f3de0bd58f66dd4be87c
Binary file
@@ -16,12 +16,12 @@ Gem::Specification.new do |spec|
16
16
 
17
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
18
  # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- if spec.respond_to?(:metadata)
20
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
- else
22
- raise "RubyGems 2.0 or newer is required to protect against " \
23
- "public gem pushes."
24
- end
19
+ #if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
+ #else
22
+ # raise "RubyGems 2.0 or newer is required to protect against " \
23
+ # "public gem pushes."
24
+ #end
25
25
 
26
26
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
27
  f.match(%r{^(test|spec|features)/})
data/Rakefile CHANGED
@@ -1,2 +1,8 @@
1
- require "bundler/gem_tasks"
2
- task :default => :spec
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
@@ -183,7 +183,7 @@ module Breinify
183
183
 
184
184
  # Send the request
185
185
  response = http.request(request)
186
- @@logger.debug 'response from call is: ' + response
186
+ @@logger.debug 'response from call is: ' + response.to_s
187
187
 
188
188
  rescue Exception => e
189
189
  @@logger.debug 'Exception caught: ' + e.message
@@ -1,3 +1,5 @@
1
1
  module Breinify
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
4
+
5
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Breinify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marco
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-09-11 00:00:00.000000000 Z
11
+ date: 2016-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -64,6 +64,7 @@ extensions: []
64
64
  extra_rdoc_files: []
65
65
  files:
66
66
  - ".gitignore"
67
+ - Breinify-0.1.0.gem
67
68
  - Breinify.gemspec
68
69
  - Gemfile
69
70
  - LICENSE.txt
@@ -73,12 +74,10 @@ files:
73
74
  - bin/setup
74
75
  - lib/Breinify.rb
75
76
  - lib/Breinify/version.rb
76
- - rspec.rake
77
77
  homepage: http://www.breinfiy.com
78
78
  licenses:
79
79
  - MIT
80
- metadata:
81
- allowed_push_host: https://rubygems.org
80
+ metadata: {}
82
81
  post_install_message:
83
82
  rdoc_options: []
84
83
  require_paths:
data/rspec.rake DELETED
@@ -1,2 +0,0 @@
1
- require 'rspec/core/rake_task'
2
- RSpec::Core::RakeTask.new(:spec)