straw 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 64c58329f184b1e76676df67b104dda39907a5983aa55bccd11504269373472e
4
+ data.tar.gz: f76a114689d847888dd53c88f212ddbd668ca98dd67d014fa68fe76b87f25ab1
5
+ SHA512:
6
+ metadata.gz: a2829f76d3a1b35c6be519a633fe9237eaf06d7bfb0f073e0de5caaf62fa33e7eb37106c60790e15ccfde9bd931934b6e75c652f9b5c4d5e4c95da38d09227c2
7
+ data.tar.gz: ab08830b2c576dc64b1efa1e047e1c21afa2dd1b9383c4e74ca1aba6e37d8b296a75305aa950bba1bd9547c404399d052e8c812ccc96ecdd17c1447110c29ecd
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 mo khan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # Straw
2
+
3
+ You can build a lot of things with straw.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'straw'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install straw
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` 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).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/xlg-pkg/straw.
30
+
31
+ ## License
32
+
33
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Straw
4
+ VERSION = "0.1.0"
5
+ end
data/lib/straw.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "straw/version"
4
+
5
+ module Straw
6
+ class Error < StandardError; end
7
+ end
data/sig/straw.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Straw
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
data/straw.gemspec ADDED
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/straw/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "straw"
7
+ spec.version = Straw::VERSION
8
+ spec.authors = ["mo khan"]
9
+ spec.email = ["mo@mokhan.ca"]
10
+
11
+ spec.summary = "You can build a lot of things with straw."
12
+ spec.description = "You can build a lot of things with straw."
13
+ spec.homepage = "https://github.com/xlg-pkg/straw"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.0.0"
16
+
17
+ spec.metadata["changelog_uri"] = "https://github.com/xlg-pkg/straw"
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["rubygems_mfa_required"] = "true"
20
+ spec.metadata["source_code_uri"] = "https://github.com/xlg-pkg/straw"
21
+
22
+ spec.files = Dir.glob([
23
+ "*.gemspec",
24
+ "LICENSE.txt",
25
+ "README.md",
26
+ "lib/**/*.rb",
27
+ "sig/**/*.rbs",
28
+ ])
29
+
30
+ spec.bindir = "exe"
31
+ spec.executables = []
32
+ spec.require_paths = ["lib"]
33
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: straw
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - mo khan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-12-22 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: You can build a lot of things with straw.
14
+ email:
15
+ - mo@mokhan.ca
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - README.md
22
+ - lib/straw.rb
23
+ - lib/straw/version.rb
24
+ - sig/straw.rbs
25
+ - straw.gemspec
26
+ homepage: https://github.com/xlg-pkg/straw
27
+ licenses:
28
+ - MIT
29
+ metadata:
30
+ changelog_uri: https://github.com/xlg-pkg/straw
31
+ homepage_uri: https://github.com/xlg-pkg/straw
32
+ rubygems_mfa_required: 'true'
33
+ source_code_uri: https://github.com/xlg-pkg/straw
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 3.0.0
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.2.32
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: You can build a lot of things with straw.
53
+ test_files: []