valera 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
  SHA256:
3
- metadata.gz: 5231a12aaef3d88a45816080986e0a6b3972fef810a5e5ddfa41cc6775b8e8ad
4
- data.tar.gz: 2018d00dc15c947f0433051d0ac2bb61f11bb96ce3b3d5e5c954fa55b6d700b5
3
+ metadata.gz: 8daaff60ec814a6e1d88e15e2b32ee0793cd1aac7629378368f8d0394166f7f7
4
+ data.tar.gz: 84a000b5c502c72a164e5c16d2ea0f038aea5f003a3ce3b8e9148ab76a1fa667
5
5
  SHA512:
6
- metadata.gz: a1684bf1dfc4290f08fa06530ea6f4480fd7fb0ddc570503a215ca3bc7ad9152760f83bd35d3c61609d50f339cd64264e94bbf701cf564740fffe4df16ff54e9
7
- data.tar.gz: 6d6dccd83d55aca25da19304d12c7ca1a250360bf1a7039d796a5d5e5f7ea9d5f412eee3257874f39bfddf562b1a7185f88e030dab23bfcd364a6acc5795f80a
6
+ metadata.gz: a8e9ae4c578af400f1f326e7da07731d6352f084f1703de0cfb6774b379f95045cf8c2418be7fe98317c36a55c39c47e715e680b4d8c523004307d00eb0e1431
7
+ data.tar.gz: 163b434e18fa8b116bca46fcbf9243c0ecbe8d5bf400498b84f502f41c7550469d0d5270310434e0069a231916aad723ddece7b4eb0925af74a0e6ad56254098
data/README.md CHANGED
@@ -16,13 +16,12 @@ If bundler is not being used to manage dependencies, install the gem by executin
16
16
 
17
17
  ## Usage
18
18
 
19
- TODO: Write usage instructions here
20
19
 
21
20
  ## Development
22
-
23
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
-
25
- 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
21
+ ```bash
22
+ gem build valera
23
+ gem push valera-0.1.0.gem
24
+ ```
26
25
 
27
26
  ## Contributing
28
27
 
data/exe/valera ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require 'valera'
3
+ Valera.hello
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Valera
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/valera-0.1.0.gem ADDED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valera
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
7
  - Serge Kislak
@@ -13,7 +13,8 @@ dependencies: []
13
13
  description:
14
14
  email:
15
15
  - kislak7@gmail.com
16
- executables: []
16
+ executables:
17
+ - valera
17
18
  extensions: []
18
19
  extra_rdoc_files: []
19
20
  files:
@@ -23,9 +24,11 @@ files:
23
24
  - LICENSE.txt
24
25
  - README.md
25
26
  - Rakefile
27
+ - exe/valera
26
28
  - lib/valera.rb
27
29
  - lib/valera/version.rb
28
30
  - sig/valera.rbs
31
+ - valera-0.1.0.gem
29
32
  homepage: https://github.com/kislak/valera
30
33
  licenses:
31
34
  - MIT