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 +4 -4
- data/lib/readonce/version.rb +1 -1
- data/readonce.gemspec +2 -2
- metadata +3 -5
- data/bin/console +0 -14
- data/bin/setup +0 -7
- /data/{exe → bin}/readonce +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e992a500c8bec3d370332976276433301662d18d
|
|
4
|
+
data.tar.gz: bfb62a12d5a3f6bb1758011dae4557e493222a56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55d0e564af378712749fdbb1558e97ba3c0a51b49d97aaf77d027d43255056b556c3730e767aff0b041e34f6a427806f0babc5f42c3d2cf27abb92394756c776
|
|
7
|
+
data.tar.gz: be528fdbcfbc2340e8ed7bfca270a5dde0e2282afeef2b5b4448e777d86ffacf28b660b84510858c891f765665662abb1547964b1ef0070773f61c035bb200c5
|
data/lib/readonce/version.rb
CHANGED
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 =
|
|
19
|
-
spec.executables =
|
|
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.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robby Grossman
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
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/
|
|
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
/data/{exe → bin}/readonce
RENAMED
|
File without changes
|