unsplash_downloader 0.1.0 → 0.1.1

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: 2333337629e053100c63d50f2e44831d99390960
4
- data.tar.gz: 13375fbafb6cdaa7e72ff80b90bd9c3e3a01d2e4
3
+ metadata.gz: a4d4727093657d71de108eb366079ce0604fd4db
4
+ data.tar.gz: d953d80f2d6a3222fe62301ac6d96f99f728716c
5
5
  SHA512:
6
- metadata.gz: 7d8b9b9f5da1659431653c7af0c0c53bc16a69a6c0b017ec95c2605c8681d3df669c1ea482a4ef53ec8c0a379f79a39abe030ebb3f4f080eb269abdbf349589b
7
- data.tar.gz: c6008fc0262187e321d6ce82cf27f9ad5b96a24bb59c656604c97662d822c870207be4855157d05122ef501db88765c98cf32c51af068f6714608ee9ce2f02dc
6
+ metadata.gz: 487faf1b2762214b58705618136505284e0490fa45b9e78940acbca6aedabfcfea31c2d9f9dedd152b5688c4b8f9edd14072de6c9fd90e01d5efe85eb8d7d647
7
+ data.tar.gz: d2edcd428a8cd64eb618229d856efdbea2bc5b40f23d45ac5650ae0c106c0aa3639a282660540986b5f8c14d90c692cd91bf95f883c9e46194e71cd898e62096
data/README.md CHANGED
@@ -1,41 +1,38 @@
1
- # UnsplashDownloader
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/unsplash_downloader`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'unsplash_downloader'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install unsplash_downloader
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/unsplash_downloader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
36
-
37
-
38
- ## License
39
-
40
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
-
1
+ # UnsplashDownloader
2
+
3
+ TODO: Gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'unsplash_downloader'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install unsplash_downloader
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Development
26
+
27
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
+
29
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/unsplash_downloader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
34
+
35
+
36
+ ## License
37
+
38
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module UnsplashDownloader
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -6,7 +6,7 @@ require 'unsplash_downloader/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "unsplash_downloader"
8
8
  spec.version = UnsplashDownloader::VERSION
9
- spec.authors = ["Barlomiej Jacak"]
9
+ spec.authors = ["Bartłomiej Jacak"]
10
10
  spec.email = ["bartek.jacak@gmail.com"]
11
11
 
12
12
  spec.summary = %q{Unsplash downloader written in Ruby.}
@@ -14,8 +14,8 @@ Gem::Specification.new do |spec|
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "exe"
18
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
+ spec.bindir = "bin"
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.add_development_dependency "bundler", "~> 1.10"
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unsplash_downloader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - Barlomiej Jacak
7
+ - Bartłomiej Jacak
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-07-08 00:00:00.000000000 Z
12
12
  dependencies:
@@ -69,7 +69,10 @@ dependencies:
69
69
  description:
70
70
  email:
71
71
  - bartek.jacak@gmail.com
72
- executables: []
72
+ executables:
73
+ - console
74
+ - setup
75
+ - unsplash_downloader
73
76
  extensions: []
74
77
  extra_rdoc_files: []
75
78
  files: