local_resource 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
  SHA256:
3
- metadata.gz: 81aecc75cd8cbb932191dcbebd167711bab0f90966016320eea7d887ac0dbe30
4
- data.tar.gz: 503852237929b0757607668c27c991f4e5aeccff271c53d195730a33f3ea426b
3
+ metadata.gz: a171759efe9801d9b28288ca53870c0bde03b42e7af26c24b23e0e5e748c07cf
4
+ data.tar.gz: 1ec0955405f32059d21a3caee71d44c134f65934af214824033916f7413e472a
5
5
  SHA512:
6
- metadata.gz: 1d2d887c856a555b03c7f64e06f36b5eb701094e8a3d2eecd3a17af9460813b107852c78b02c6b6fc128b9e9f93ddcc8fdebfb73b213c4bab883ce9e734d1263
7
- data.tar.gz: 50d43dc95a39af7afacbcfd4e2a508c5a2613063de2451982f45931ea12874a0234d6292f1aa318afa8dae2bc56a1e8cb2a863b1f0fbd7b08280ea902b226458
6
+ metadata.gz: 947ea04daf3bea1d3bbbc3f9bd55857b2ed57fcff862db6732e848220080f60e25ed21e32cd0a68bc2e361d0600adbfde00488b982df9b715b69f5579c3d0188
7
+ data.tar.gz: 92981988d08a69006c84a52aca642b064b4688fef17478ad7e653a6a5e21adf87e9e3b66342e6dd181b5ba5c4eda7af4cd4a49290b19adb9a4b1d215907843eb
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ### Unreleased
6
+
7
+ #### 0.1.1
8
+
9
+ * Require open-uri to point right open method.
10
+
5
11
  ### v0.1.0
6
12
 
7
13
  * Initial release.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- local_resource (0.1.0)
4
+ local_resource (0.1.1)
5
5
  rails (>= 4.2.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Local Resource
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/local_resource.svg)](https://badge.fury.io/rb/local_resource)
3
4
  [![Build Status](https://travis-ci.org/platanus/local_resource.svg?branch=master)](https://travis-ci.org/platanus/local_resource)
5
+ [![Coverage Status](https://coveralls.io/repos/github/platanus/local_resource/badge.svg?branch=master)](https://coveralls.io/github/platanus/local_resource?branch=master)
4
6
 
5
7
  Rails engine to take a file from a url, download it to the tmp, use it and delete it
6
8
 
@@ -1,3 +1,5 @@
1
+ require 'open-uri'
2
+
1
3
  module LocalResource
2
4
  class Instance
3
5
  def initialize(url, tmp_filename)
@@ -1,3 +1,3 @@
1
1
  module LocalResource
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: local_resource
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
  - Platanus
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-06-28 00:00:00.000000000 Z
12
+ date: 2018-06-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails