uniprop 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dbcacc7684a0d8eb4f621d076755c1b826f10c9171e863e02cb4e27ebb6c0d62
4
+ data.tar.gz: fafba0cf2837956f828e09a54e90b612250fa577c5ded1dbd91b0ac90fc58506
5
+ SHA512:
6
+ metadata.gz: 20853ed02944b6beb60b4f5740bcde1c244984bc4d271250f82f19933c8c61f872e94612e6eff0ff071e6e126001be18ad830e3a429bca8772cf58fac85c815b
7
+ data.tar.gz: a370fb32071e098e5eeaedc7c40a58d785eb104922fc695417455943e5220c12a04baaad3fe0ecfed7202d3f16ed610a2017644ebe272ca2859ae29dea7abb92
data/CHANGELOG.md ADDED
File without changes
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem('set', '1.0.2')
6
+ gem('open-uri', '0.2.0')
7
+ gem('nokogiri', '>=1.13.8')
8
+ gem('json', '2.6.1')
9
+ gem('rubyzip', '2.3.2', {require: "zip"})
data/Gemfile.lock ADDED
@@ -0,0 +1,31 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ date (3.3.3)
5
+ json (2.6.1)
6
+ nokogiri (1.14.2-x64-mingw-ucrt)
7
+ racc (~> 1.4)
8
+ open-uri (0.2.0)
9
+ stringio
10
+ time
11
+ uri
12
+ racc (1.6.2)
13
+ rubyzip (2.3.2)
14
+ set (1.0.2)
15
+ stringio (3.0.5)
16
+ time (0.2.1)
17
+ date
18
+ uri (0.12.0)
19
+
20
+ PLATFORMS
21
+ x64-mingw-ucrt
22
+
23
+ DEPENDENCIES
24
+ json (= 2.6.1)
25
+ nokogiri (>= 1.13.8)
26
+ open-uri (= 0.2.0)
27
+ rubyzip (= 2.3.2)
28
+ set (= 1.0.2)
29
+
30
+ BUNDLED WITH
31
+ 2.3.25
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Uniprop
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/uniprop`. 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
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ $ bundle add uniprop
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ $ gem install uniprop
16
+
17
+ ## Usage
18
+
19
+ TODO: Write usage instructions here
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/[USERNAME]/uniprop.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ end
11
+
12
+ task default: :test