higem 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4ae3bb52da258f4d02aaeb753714497d57142ce2
4
- data.tar.gz: bcf5a6b8bde94cf88b8501ab8ccee6db7f626716
2
+ SHA256:
3
+ metadata.gz: a25604377898d21836b72c56c66f6c2ca96b6243af10e7fc4d805aec6cd37df5
4
+ data.tar.gz: a8f7f84589cee8b194a3213f82831e27389d138854d9e574439c8f8ab2965e06
5
5
  SHA512:
6
- metadata.gz: ade64cf8d35b63c82204faefcc1f78ce22e609a5bb7da0bf4bdf4373c391f4937a2dac3dbfe000821bfaebc352233bcbad7d14eba4b91a2f46b5b132d9be5239
7
- data.tar.gz: cc4bcb65914a01b57d896dd331960ef996fa2472ff636a7cc53575a1a3e8165da6f36fb251debc63aff24a81ad2eb185e87ce03f3d7a033db0f3560acf010c74
6
+ metadata.gz: 83cb7fa7e9dccd09ab69124a2c5b6f93f6b5bac01f9bd5b8977c6d2101bbbd8a9f33974744d42272b8629e3b46df8b5ecf3387f0b9d549d3eb22d38a31f26267
7
+ data.tar.gz: 437e5b660882781abefe781b36cb3162766410ad370381d4253a478d2e0a39c29d5736a40e3fd6284c52537eadec6495ce3e135334977aa514490b23d83c25ee
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --format documentation
2
2
  --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ AllCops:
2
+ TargetRubyVersion: 3.0
3
+
4
+ Style/StringLiterals:
5
+ EnforcedStyle: double_quotes
6
+
7
+ Style/StringLiteralsInInterpolation:
8
+ EnforcedStyle: double_quotes
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.3.2
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.2] - 2024-06-07
4
+
5
+ - Refactor and upgrade to ruby3
data/README.md CHANGED
@@ -1,20 +1,16 @@
1
1
  # Higem
2
2
 
3
- Hi gem to test gem stack!
3
+ TODO: Delete this and the text below, and describe your gem
4
4
 
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
5
+ 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/higem`. To experiment with that code, run `bin/console` for an interactive prompt.
8
6
 
9
- ```ruby
10
- gem 'higem'
11
- ```
7
+ ## Installation
12
8
 
13
- And then execute:
9
+ Install the gem and add to the application's Gemfile by executing:
14
10
 
15
- $ bundle
11
+ $ bundle add higem
16
12
 
17
- Or install it yourself as:
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
14
 
19
15
  $ gem install higem
20
16
 
@@ -23,27 +19,16 @@ Or install it yourself as:
23
19
  ```bash
24
20
  ~$ higem
25
21
  Hi gem from version: 0.1.0!
26
- ~$ irb
27
- irb(main):001:0> require 'higem'
28
- true
29
- irb(main):002:0> Higem.hi
22
+ ~$ ruby -rhigem -e 'Higem.hi'
30
23
  Hi gem from version: 0.1.0!
31
- nil
32
- irb(main):003:0>
33
24
  ```
34
25
 
35
26
  ## Development
36
27
 
37
28
  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.
38
29
 
39
- 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
+ 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).
40
31
 
41
32
  ## Contributing
42
33
 
43
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/higem. 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
-
45
-
46
- ## License
47
-
48
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
49
-
34
+ Bug reports and pull requests are welcome on GitHub at https://github.com/cao7113/higem.
data/Rakefile CHANGED
@@ -1,6 +1,13 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
 
4
6
  RSpec::Core::RakeTask.new(:spec)
5
7
 
6
- task :default => :spec
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ # task default: %i[spec rubocop]
13
+ task default: %i[spec]
data/Taskfile.yml ADDED
@@ -0,0 +1,11 @@
1
+ # https://taskfile.dev
2
+ version: "3"
3
+ tasks:
4
+ mk-higem: bundle gem higem --exe --no-coc --no-mit --test=rspec --ci=github --linter=rubocop
5
+ ## in higem dir:
6
+ # bin/setup
7
+ # bundle list
8
+ # rake -AT
9
+ # rake spec # run spec
10
+ # bin/console # go into console
11
+ # rake install:local
data/exe/higem CHANGED
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "higem"
4
-
5
- Higem.hi
4
+ Higem.hi
data/lib/higem/version.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Higem
2
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
3
5
  end
data/lib/higem.rb CHANGED
@@ -1,6 +1,10 @@
1
- require "higem/version"
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "higem/version"
2
4
 
3
5
  module Higem
6
+ class Error < StandardError; end
7
+
4
8
  module_function
5
9
 
6
10
  def version
data/sig/higem.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Higem
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata CHANGED
@@ -1,84 +1,42 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: higem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
- - Ruijian Cao
8
- autorequire:
7
+ - Ryn Cao
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-09-21 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.12'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.12'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '10.0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '10.0'
41
- - !ruby/object:Gem::Dependency
42
- name: rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
55
- description: hi gem.
11
+ date: 2024-06-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: hi gem
56
14
  email:
57
- - cao7113@hotmail.com
15
+ - cao7113@gmail.com
58
16
  executables:
59
17
  - higem
60
18
  extensions: []
61
19
  extra_rdoc_files: []
62
20
  files:
63
- - ".gitignore"
64
21
  - ".rspec"
65
- - ".travis.yml"
66
- - CODE_OF_CONDUCT.md
67
- - Gemfile
68
- - LICENSE.txt
22
+ - ".rubocop.yml"
23
+ - ".tool-versions"
24
+ - CHANGELOG.md
69
25
  - README.md
70
26
  - Rakefile
71
- - bin/console
72
- - bin/setup
27
+ - Taskfile.yml
73
28
  - exe/higem
74
- - higem.gemspec
75
29
  - lib/higem.rb
76
30
  - lib/higem/version.rb
77
- homepage: https://github.com/cao7113
78
- licenses:
79
- - MIT
80
- metadata: {}
81
- post_install_message:
31
+ - sig/higem.rbs
32
+ homepage: https://github.com/cao7113/hello-ruby/higem
33
+ licenses: []
34
+ metadata:
35
+ allowed_push_host: https://rubygems.org
36
+ homepage_uri: https://github.com/cao7113/hello-ruby/higem
37
+ source_code_uri: https://github.com/cao7113/higem
38
+ changelog_uri: https://github.com/cao7113/higem
39
+ post_install_message:
82
40
  rdoc_options: []
83
41
  require_paths:
84
42
  - lib
@@ -86,16 +44,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
86
44
  requirements:
87
45
  - - ">="
88
46
  - !ruby/object:Gem::Version
89
- version: '0'
47
+ version: 3.0.0
90
48
  required_rubygems_version: !ruby/object:Gem::Requirement
91
49
  requirements:
92
50
  - - ">="
93
51
  - !ruby/object:Gem::Version
94
52
  version: '0'
95
53
  requirements: []
96
- rubyforge_project:
97
- rubygems_version: 2.5.2
98
- signing_key:
54
+ rubygems_version: 3.5.9
55
+ signing_key:
99
56
  specification_version: 4
100
- summary: Hi gem.
57
+ summary: hi gem
101
58
  test_files: []
data/.gitignore DELETED
@@ -1,9 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.3.3
5
- before_install: gem install bundler -v 1.12.5
data/CODE_OF_CONDUCT.md DELETED
@@ -1,49 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, and in the interest of
4
- fostering an open and welcoming community, we pledge to respect all people who
5
- contribute through reporting issues, posting feature requests, updating
6
- documentation, submitting pull requests or patches, and other activities.
7
-
8
- We are committed to making participation in this project a harassment-free
9
- experience for everyone, regardless of level of experience, gender, gender
10
- identity and expression, sexual orientation, disability, personal appearance,
11
- body size, race, ethnicity, age, religion, or nationality.
12
-
13
- Examples of unacceptable behavior by participants include:
14
-
15
- * The use of sexualized language or imagery
16
- * Personal attacks
17
- * Trolling or insulting/derogatory comments
18
- * Public or private harassment
19
- * Publishing other's private information, such as physical or electronic
20
- addresses, without explicit permission
21
- * Other unethical or unprofessional conduct
22
-
23
- Project maintainers have the right and responsibility to remove, edit, or
24
- reject comments, commits, code, wiki edits, issues, and other contributions
25
- that are not aligned to this Code of Conduct, or to ban temporarily or
26
- permanently any contributor for other behaviors that they deem inappropriate,
27
- threatening, offensive, or harmful.
28
-
29
- By adopting this Code of Conduct, project maintainers commit themselves to
30
- fairly and consistently applying these principles to every aspect of managing
31
- this project. Project maintainers who do not follow or enforce the Code of
32
- Conduct may be permanently removed from the project team.
33
-
34
- This code of conduct applies both within project spaces and in public spaces
35
- when an individual is representing the project or its community.
36
-
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer at cao7113@hotmail.com. All
39
- complaints will be reviewed and investigated and will result in a response that
40
- is deemed necessary and appropriate to the circumstances. Maintainers are
41
- obligated to maintain confidentiality with regard to the reporter of an
42
- incident.
43
-
44
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
- version 1.3.0, available at
46
- [http://contributor-covenant.org/version/1/3/0/][version]
47
-
48
- [homepage]: http://contributor-covenant.org
49
- [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in higem.gemspec
4
- gemspec
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2017 Ruijian Cao
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/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "higem"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/higem.gemspec DELETED
@@ -1,25 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'higem/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "higem"
8
- spec.version = Higem::VERSION
9
- spec.authors = ["Ruijian Cao"]
10
- spec.email = ["cao7113@hotmail.com"]
11
-
12
- spec.summary = %q{Hi gem.}
13
- spec.description = %q{hi gem.}
14
- spec.homepage = "https://github.com/cao7113"
15
- spec.license = "MIT"
16
-
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
- spec.bindir = "exe"
19
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
21
-
22
- spec.add_development_dependency "bundler", "~> 1.12"
23
- spec.add_development_dependency "rake", "~> 10.0"
24
- spec.add_development_dependency "rspec", "~> 3.0"
25
- end