meditation 0.1.3 → 0.1.4

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: 8a8c6d68aa4bb6ecd4866d444b55c72bbbe9c9e3
4
- data.tar.gz: 3c5333ec0ccd44885388d9ab4229f89afbd5a7c1
3
+ metadata.gz: fb6261780c5d3764690e922c128b94266e121d7e
4
+ data.tar.gz: 890d6d4109b58cafc4605f7abc353ea9e1c2f484
5
5
  SHA512:
6
- metadata.gz: f88e8964f7618e632eeac9481dae0e7b9a89dfbd8db590df13df5482fca62ff234d9fd39943bf7088d33ef6b7099bf7b329979aa2cc5343f2ab6998c00070731
7
- data.tar.gz: fa130c1090113598e3693c76e03b27a769461077c482473d7e9f19d4e7b1763346e6ee366dbd426b6d4fa5ac161b395efa79b48b127869d602c77e9859e6ed51
6
+ metadata.gz: 656d9ecf2e7501af9c019722c0165c0c8aeea81f16fc9fa954777326ec43cf2c73eea85cc1c8dff986d34ed0a8175dcc781679699befd3a40d784b6add07496d
7
+ data.tar.gz: 5c48b39eaa44b2d9e6b6c6dd028318f4868f1eb831778b59eab3f212e5b1d8da48facd151e7d5523a7fa189b3575f3098edac837238687db5d7c75c738755010
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- meditation (0.1.2)
4
+ meditation (0.1.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module Meditation
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -5,26 +5,33 @@ require "meditation/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "meditation"
8
- spec.version = "0.1.3"
9
- spec.authors = ["Miriam Peskowitz"]
10
- spec.email = ["miriam5000@gmail.com"]
8
+ spec.version = "0.1.4"
9
+ spec.authors = "Miriam Peskowitz"
10
+ spec.email = "miriam5000@gmail.com"
11
11
 
12
- spec.summary = %q{Meditations to start your day.}
13
-
12
+ spec.summary = "Meditations to start your day, from Audiodharma.org."
13
+ spec.description = "CLI app that that scrapes five daily meditations so you can choose one."
14
14
  spec.homepage = "https://github.com/MiriamPeskowitz/CLI-meditation"
15
+ spec.license = "MIT"
15
16
 
17
+ if spec.respond_to?(:metadata)
18
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
19
+ else
20
+ raise "RubyGems 2.0 or newer is required to protect against " \
21
+ "public gem pushes."
22
+ end
16
23
 
17
24
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
25
  f.match(%r{^(test|spec|features)/})
19
26
  end
20
- spec.bindir = "exe"
21
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.bindir = "bin"
28
+ spec.executables = ["meditation-start"]
22
29
  spec.require_paths = ["lib"]
23
30
 
24
31
  spec.add_development_dependency "bundler", "~> 1.16.a"
25
32
  spec.add_development_dependency "rake", "~> 10.0"
26
33
  spec.add_development_dependency "pry", "~> 0.11.2"
27
- spec.add_development_dependency "nokogiri", "~> 1.8.1"
28
- spec.add_development_dependency "require_all", "~> 1.4.0"
34
+ spec.add_runtime_dependency "nokogiri", "~> 1.8.1"
35
+ spec.add_runtime_dependency "require_all", "~> 1.4.0"
29
36
 
30
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meditation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miriam Peskowitz
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-31 00:00:00.000000000 Z
11
+ date: 2017-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -59,7 +59,7 @@ dependencies:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: 1.8.1
62
- type: :development
62
+ type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -73,17 +73,17 @@ dependencies:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: 1.4.0
76
- type: :development
76
+ type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.4.0
83
- description:
84
- email:
85
- - miriam5000@gmail.com
86
- executables: []
83
+ description: CLI app that that scrapes five daily meditations so you can choose one.
84
+ email: miriam5000@gmail.com
85
+ executables:
86
+ - meditation-start
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
@@ -105,8 +105,10 @@ files:
105
105
  - meditation.gemspec
106
106
  - spec.md
107
107
  homepage: https://github.com/MiriamPeskowitz/CLI-meditation
108
- licenses: []
109
- metadata: {}
108
+ licenses:
109
+ - MIT
110
+ metadata:
111
+ allowed_push_host: https://rubygems.org
110
112
  post_install_message:
111
113
  rdoc_options: []
112
114
  require_paths:
@@ -126,5 +128,5 @@ rubyforge_project:
126
128
  rubygems_version: 2.6.14
127
129
  signing_key:
128
130
  specification_version: 4
129
- summary: Meditations to start your day.
131
+ summary: Meditations to start your day, from Audiodharma.org.
130
132
  test_files: []