readonce 1.0.2 → 1.0.3

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: 6f925e6ed3b1173f235f7fbd8e874b97bf722f20
4
- data.tar.gz: 4a446a16b5a8add78b1e1a3ca879bb0680d0eff0
3
+ metadata.gz: e992a500c8bec3d370332976276433301662d18d
4
+ data.tar.gz: bfb62a12d5a3f6bb1758011dae4557e493222a56
5
5
  SHA512:
6
- metadata.gz: 4a288ff2b33ed84c05ec922178e385bde0ff6b37e7765ee9823b7025fe802d5ba9f57f0ac5435f031fe344042b78c1a0cdafd760c8ab5720e89aa2b4265de184
7
- data.tar.gz: f4b9db4ca5780c1b7d7ae1ba8c43149e915c9f57a726158700038e548bdac94ae8fff5ef423e1d10ef2061f7544bc991b745a0ee757d44910398eba654573e71
6
+ metadata.gz: 55d0e564af378712749fdbb1558e97ba3c0a51b49d97aaf77d027d43255056b556c3730e767aff0b041e34f6a427806f0babc5f42c3d2cf27abb92394756c776
7
+ data.tar.gz: be528fdbcfbc2340e8ed7bfca270a5dde0e2282afeef2b5b4448e777d86ffacf28b660b84510858c891f765665662abb1547964b1ef0070773f61c035bb200c5
@@ -1,3 +1,3 @@
1
1
  module Readonce
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
data/readonce.gemspec CHANGED
@@ -15,8 +15,8 @@ Gem::Specification.new do |spec|
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.bindir = 'bin'
19
+ spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_dependency 'httparty', '~> 0'
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: readonce
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robby Grossman
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2016-05-01 00:00:00.000000000 Z
12
12
  dependencies:
@@ -109,9 +109,7 @@ files:
109
109
  - LICENSE.txt
110
110
  - README.md
111
111
  - Rakefile
112
- - bin/console
113
- - bin/setup
114
- - exe/readonce
112
+ - bin/readonce
115
113
  - fixtures/vcr_cassettes/create-file.yml
116
114
  - fixtures/vcr_cassettes/key-does-not-exist.yml
117
115
  - fixtures/vcr_cassettes/key-exists.yml
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "readonce"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
File without changes