images_by_url 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 +4 -4
- data/.travis.yml +1 -1
- data/CONTTIBUTING.md +39 -0
- data/Gemfile.lock +7 -1
- data/README.md +1 -2
- data/images_by_url.gemspec +3 -0
- data/lib/images_by_url/version.rb +1 -1
- metadata +44 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48e84906893e1b33d1866a17fe875ba6971706d9
|
|
4
|
+
data.tar.gz: 86ce45f53fd2f8246fc095740cdb0bf0aec1f193
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 476d3e36044d70e6b6f614cdf0e567a080be6e84663f3c6c4f1ef9112244fcbb8b906669c232b81b09032be4ee9797400c8820a4b65a50fff6c9dbe477f16c36
|
|
7
|
+
data.tar.gz: 2d5896e9f37466a7de9c66acc8b0d219a614e9585efe112677adccc7c3d17ac16668e2f1c2d76d8ba0c25bce2ac05b449f75d217e20c88daf08a322499528916
|
data/.travis.yml
CHANGED
|
@@ -36,4 +36,4 @@ before_script:
|
|
|
36
36
|
- sudo ln -s /usr/local/share/selenium-server-standalone-3.0.1.jar /usr/local/bin/selenium-server-standalone-3.0.1.jar
|
|
37
37
|
script:
|
|
38
38
|
- BROWSER_MIN=on ENV=test bundle exec rspec
|
|
39
|
-
|
|
39
|
+
#- CODECLIMATE_REPO_TOKEN=431e13a58615c311ea53fd104db553d633d96018687949d0b3423ace9b4ccf47 bundle exec codeclimate-test-reporter
|
data/CONTTIBUTING.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
## Reporting Issues
|
|
2
|
+
|
|
3
|
+
You can report issues at https://github.com/mifrill/images_by_url/issues
|
|
4
|
+
|
|
5
|
+
Search existing issues for your problem, chances are someone else already reported it.
|
|
6
|
+
|
|
7
|
+
* Include the images_by_url version you are running in your report.
|
|
8
|
+
* If you are not running the latest version (please check), and you cannot update it,
|
|
9
|
+
please specify in your report why you can't update to the latest version.
|
|
10
|
+
* Include your `ruby -e "puts RUBY_DESCRIPTION"`.
|
|
11
|
+
* Please also specify the gem versions of Rails (if applicable).
|
|
12
|
+
* Include any other coverage gems you may be using and their versions.
|
|
13
|
+
* Include how you run your tests and which testing framework or frameworks you are running.
|
|
14
|
+
- If running via rake, please ensure you are requiring images_by_url at the top of your Rakefile
|
|
15
|
+
- Otherwise, please ensure you are requiring and starting images_by_url before requiring any application code.
|
|
16
|
+
For example, if running via RSpec, this would be at the top of your spec_helper.
|
|
17
|
+
|
|
18
|
+
Include as much sample code as you can to help us reproduce the issue. (Inline, repo link, or gist, are fine. A failing test would help the most.)
|
|
19
|
+
|
|
20
|
+
This is extremely important for narrowing down the cause of your problem.
|
|
21
|
+
|
|
22
|
+
Thanks!
|
|
23
|
+
|
|
24
|
+
## Making Contributions
|
|
25
|
+
|
|
26
|
+
To fetch & test the library for development, do:
|
|
27
|
+
|
|
28
|
+
$ git clone https://github.com/mifrill/images_by_url.git
|
|
29
|
+
$ cd images_by_url
|
|
30
|
+
$ bundle
|
|
31
|
+
$ rspec
|
|
32
|
+
|
|
33
|
+
If you want to contribute, please:
|
|
34
|
+
|
|
35
|
+
* Fork the project.
|
|
36
|
+
* Make your feature addition or bug fix.
|
|
37
|
+
* Add tests for it. This is important so I don't break it in a future version unintentionally.
|
|
38
|
+
* **Bonus Points** go out to anyone who also updates `CHANGELOG.md` :)
|
|
39
|
+
* Send me a pull request on Github.
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
images_by_url (0.1.
|
|
4
|
+
images_by_url (0.1.4)
|
|
5
5
|
nokogiri (~> 1.8.0)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
@@ -20,6 +20,9 @@ GEM
|
|
|
20
20
|
mini_portile2 (2.2.0)
|
|
21
21
|
nokogiri (1.8.0)
|
|
22
22
|
mini_portile2 (~> 2.2.0)
|
|
23
|
+
rake (10.5.0)
|
|
24
|
+
rake-compiler (1.0.4)
|
|
25
|
+
rake
|
|
23
26
|
rspec (3.6.0)
|
|
24
27
|
rspec-core (~> 3.6.0)
|
|
25
28
|
rspec-expectations (~> 3.6.0)
|
|
@@ -44,11 +47,14 @@ PLATFORMS
|
|
|
44
47
|
ruby
|
|
45
48
|
|
|
46
49
|
DEPENDENCIES
|
|
50
|
+
bundler
|
|
47
51
|
codeclimate-test-reporter (~> 1.0.8)
|
|
48
52
|
codecov (~> 0.1.10)
|
|
49
53
|
headless (~> 2.3.1)
|
|
50
54
|
images_by_url!
|
|
51
55
|
nokogiri (~> 1.8.0)
|
|
56
|
+
rake
|
|
57
|
+
rake-compiler
|
|
52
58
|
rspec (= 3.6.0)
|
|
53
59
|
simplecov (~> 0.13.0)
|
|
54
60
|
|
data/README.md
CHANGED
|
@@ -40,10 +40,9 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
40
40
|
|
|
41
41
|
## Contributing
|
|
42
42
|
|
|
43
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
43
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/mifrill/images_by_url. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
## License
|
|
47
47
|
|
|
48
48
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
49
|
-
|
data/images_by_url.gemspec
CHANGED
|
@@ -34,4 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
|
|
35
35
|
spec.add_runtime_dependency 'nokogiri', '~> 1.8.0'
|
|
36
36
|
spec.add_development_dependency 'rspec', '~> 3.6.0'
|
|
37
|
+
spec.add_development_dependency 'bundler'
|
|
38
|
+
spec.add_development_dependency 'rake'
|
|
39
|
+
spec.add_development_dependency 'rake-compiler'
|
|
37
40
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: images_by_url
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mifrill
|
|
@@ -38,6 +38,48 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 3.6.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: bundler
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rake
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rake-compiler
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
41
83
|
description: Get list of images links by url
|
|
42
84
|
email:
|
|
43
85
|
- alexei.mifrill.strizhak@gmail.com
|
|
@@ -51,6 +93,7 @@ files:
|
|
|
51
93
|
- ".rspec"
|
|
52
94
|
- ".travis.yml"
|
|
53
95
|
- CODE_OF_CONDUCT.md
|
|
96
|
+
- CONTTIBUTING.md
|
|
54
97
|
- Gemfile
|
|
55
98
|
- Gemfile.lock
|
|
56
99
|
- LICENSE.txt
|