dev_to 0.1.2 → 0.1.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/dev_to.gemspec +5 -5
- data/lib/dev_to/version.rb +1 -1
- data/spec/dev_to_spec.rb +9 -0
- data/spec/spec_helper.rb +14 -0
- metadata +4 -7
- data/.gitignore +0 -12
- data/.rspec +0 -3
- data/.travis.yml +0 -5
- data/dev_to-0.1.0.gem +0 -0
- data/dev_to-0.1.1.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73f5d3a0bf449c786abf421127de023d5de3e7bb93f8a715ec412bd7626529e4
|
|
4
|
+
data.tar.gz: a52acf9c680716000bcf6df28037eb719c1ebdfa4fb09ffd3889860c1279f32d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e21e82caada28a7e541b07739d1801817d0b4b5c2f1608251b12ce705641fbd729054349fbf9057e4b1ef97c79aecc9c3d0f9fba61d1a29c72e9e9b41d3fa0db
|
|
7
|
+
data.tar.gz: e37f09a9d64c11aa6d57bb89c51730e75c0f1ca991e2605f77072325c092bddeef93028f97168b257015c747fb4fd7ea28b30bbf800e38b2505d72525b0f6c02
|
data/dev_to.gemspec
CHANGED
|
@@ -13,13 +13,13 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.description = %q{Application that provides a Command Line Interface (CLI) to read Posts from The DEV Community, https://dev.to/}
|
|
14
14
|
spec.homepage = "https://github.com/PRbsas/devto-cli-gem"
|
|
15
15
|
spec.license = "MIT"
|
|
16
|
-
|
|
17
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
|
-
f.match(%r{^(test|spec|features)/})
|
|
19
|
-
end
|
|
20
16
|
|
|
17
|
+
#spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
|
+
# f.match(%r{^(test|spec|features)/})
|
|
19
|
+
#end
|
|
20
|
+
spec.files = Dir["**/*"].select { |f| File.file? f } - Dir['*.gem']
|
|
21
21
|
spec.executables << 'devto'
|
|
22
|
-
spec.require_paths = ["lib"]
|
|
22
|
+
spec.require_paths = ["lib, lib/dev_to"]
|
|
23
23
|
|
|
24
24
|
spec.add_development_dependency "bundler", "~> 1.16"
|
|
25
25
|
spec.add_development_dependency "rake", "~> 10.0"
|
data/lib/dev_to/version.rb
CHANGED
data/spec/dev_to_spec.rb
ADDED
data/spec/spec_helper.rb
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
require "bundler/setup"
|
|
2
|
+
require "dev_to"
|
|
3
|
+
|
|
4
|
+
RSpec.configure do |config|
|
|
5
|
+
# Enable flags like --only-failures and --next-failure
|
|
6
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
|
7
|
+
|
|
8
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
9
|
+
config.disable_monkey_patching!
|
|
10
|
+
|
|
11
|
+
config.expect_with :rspec do |c|
|
|
12
|
+
c.syntax = :expect
|
|
13
|
+
end
|
|
14
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dev_to
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PRbsas
|
|
@@ -109,9 +109,6 @@ executables:
|
|
|
109
109
|
extensions: []
|
|
110
110
|
extra_rdoc_files: []
|
|
111
111
|
files:
|
|
112
|
-
- ".gitignore"
|
|
113
|
-
- ".rspec"
|
|
114
|
-
- ".travis.yml"
|
|
115
112
|
- CODE_OF_CONDUCT.md
|
|
116
113
|
- Gemfile
|
|
117
114
|
- Gemfile.lock
|
|
@@ -122,8 +119,6 @@ files:
|
|
|
122
119
|
- bin/devto
|
|
123
120
|
- bin/setup
|
|
124
121
|
- config/environment.rb
|
|
125
|
-
- dev_to-0.1.0.gem
|
|
126
|
-
- dev_to-0.1.1.gem
|
|
127
122
|
- dev_to.gemspec
|
|
128
123
|
- lib/dev_to.rb
|
|
129
124
|
- lib/dev_to/cli.rb
|
|
@@ -131,6 +126,8 @@ files:
|
|
|
131
126
|
- lib/dev_to/scraper.rb
|
|
132
127
|
- lib/dev_to/version.rb
|
|
133
128
|
- spec.md
|
|
129
|
+
- spec/dev_to_spec.rb
|
|
130
|
+
- spec/spec_helper.rb
|
|
134
131
|
homepage: https://github.com/PRbsas/devto-cli-gem
|
|
135
132
|
licenses:
|
|
136
133
|
- MIT
|
|
@@ -138,7 +135,7 @@ metadata: {}
|
|
|
138
135
|
post_install_message:
|
|
139
136
|
rdoc_options: []
|
|
140
137
|
require_paths:
|
|
141
|
-
- lib
|
|
138
|
+
- lib, lib/dev_to
|
|
142
139
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
143
140
|
requirements:
|
|
144
141
|
- - ">="
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/dev_to-0.1.0.gem
DELETED
|
Binary file
|
data/dev_to-0.1.1.gem
DELETED
|
Binary file
|