rails_env_helper 0.1.0 → 0.1.1

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
2
  SHA256:
3
- metadata.gz: 4de8d4c3420376833d169cb1c8f2d0c1abaf065a5705479f1539104a4ec367ee
4
- data.tar.gz: b06b086ae21b480fcc7a17e5be376a13cecefe20fc2467efb60f31a1eb4d5969
3
+ metadata.gz: d08e46e7ff671016310ecf1006f5d056715dba5fbac185ba55ded1ed5473c69e
4
+ data.tar.gz: acdbc48300384909f2c0c601b7996c1ffec0f97a52d55de7136c01b4f255b329
5
5
  SHA512:
6
- metadata.gz: 03a30b8ff56f3fdfc026efb84a348450cdecd162928fb764f4fc221693d18a37f709cc9b5c82838ad8a94e7c7f1cc833f63158a87d7e0f7a13f737fb463b753e
7
- data.tar.gz: d0c624625fcaaeaf9c113225386dd17ff12f204891d06824ef1cf11c89b1f5ea84e9b1494c1e4d4bcb5152c084f2ad6e68c9cad308a611b4176d310c8cb35f48
6
+ metadata.gz: e8a649ead005b992815e655b3d2699d2aaaaaf78a110c4ff0b3226c2a13db6d5c8676b18bed4f69cf3c2d5b93aeef9e534b818cfa07f9e2c0c9f6c7808a64b78
7
+ data.tar.gz: d939cf030e3eeccea5f3075d5cb61b902a21d30a6765e0caa2f311ec1a54ecbbcdd4b1ef6b6f7411feede460677a195be4092bad3ee8bb529be6412d563e9c35
data/README.md CHANGED
@@ -1,39 +1,2 @@
1
- # RailsEnvHelper
2
-
3
- TODO: Delete this and the text below, and describe your gem
4
-
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/rails_env_helper`. To experiment with that code, run `bin/console` for an interactive prompt.
6
-
7
- ## Installation
8
-
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
- Install the gem and add to the application's Gemfile by executing:
12
-
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
-
15
- If bundler is not being used to manage dependencies, install the gem by executing:
16
-
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Development
24
-
25
- 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.
26
-
27
- 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).
28
-
29
- ## Contributing
30
-
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rails_env_helper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/rails_env_helper/blob/main/CODE_OF_CONDUCT.md).
32
-
33
- ## License
34
-
35
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
-
37
- ## Code of Conduct
38
-
39
- Everyone interacting in the RailsEnvHelper project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rails_env_helper/blob/main/CODE_OF_CONDUCT.md).
1
+ # rails_env_helper
2
+ Simplify working with environment variables in a Ruby on Rails application.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsEnvHelper
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
Binary file
@@ -16,9 +16,9 @@ Gem::Specification.new do |spec|
16
16
 
17
17
  spec.metadata = {
18
18
  "allowed_push_host" => 'https://rubygems.org',
19
- "homepage_uri" => 'https://github.com/Bhuvanesh-ROR/schedule_master',
20
- "source_code_uri" => 'https://github.com/Bhuvanesh-ROR/schedule_master',
21
- "changelog_uri" => 'https://github.com/Bhuvanesh-ROR/schedule_master/blob/main/CHANGELOG.md',
19
+ "homepage_uri" => 'https://github.com/Bhuvanesh-ROR/rails_env_helper',
20
+ "source_code_uri" => 'https://github.com/Bhuvanesh-ROR/rails_env_helper',
21
+ "changelog_uri" => 'https://github.com/Bhuvanesh-ROR/rails_env_helper/blob/main/CHANGELOG.md',
22
22
  }
23
23
 
24
24
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_env_helper
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
  - Bhuvanesh Ganesan
@@ -39,6 +39,7 @@ files:
39
39
  - Rakefile
40
40
  - lib/rails_env_helper.rb
41
41
  - lib/rails_env_helper/version.rb
42
+ - rails_env_helper-0.1.0.gem
42
43
  - rails_env_helper.gemspec
43
44
  - sig/rails_env_helper.rbs
44
45
  homepage:
@@ -46,9 +47,9 @@ licenses:
46
47
  - MIT
47
48
  metadata:
48
49
  allowed_push_host: https://rubygems.org
49
- homepage_uri: https://github.com/Bhuvanesh-ROR/schedule_master
50
- source_code_uri: https://github.com/Bhuvanesh-ROR/schedule_master
51
- changelog_uri: https://github.com/Bhuvanesh-ROR/schedule_master/blob/main/CHANGELOG.md
50
+ homepage_uri: https://github.com/Bhuvanesh-ROR/rails_env_helper
51
+ source_code_uri: https://github.com/Bhuvanesh-ROR/rails_env_helper
52
+ changelog_uri: https://github.com/Bhuvanesh-ROR/rails_env_helper/blob/main/CHANGELOG.md
52
53
  post_install_message:
53
54
  rdoc_options: []
54
55
  require_paths: