wiggle 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: c76d31b78a29e90bd79334a0ef9347e903563b75a50f1e07f4d53a97e5e03b9a
4
- data.tar.gz: 97c4ec960b4fcf2205cfbe1388949038fe0b5e3b5a6aa1faa305b8b9ce3d44e2
3
+ metadata.gz: 2075721b2c6214e400ee148594ecd22deecaac37ca4a7dad66cf5ffb5c46270a
4
+ data.tar.gz: 0b67c52babd516d4c91a4563923fa750d7e7c17de04224a44748607f763d63b3
5
5
  SHA512:
6
- metadata.gz: '099cd75b8331906d229f94a044ffe660be850053ea59d84f74c765de07fd0d20bd1d24819dc79546bfbb03604fbf0391484f0957ba07092c5b81b51d4146acfe'
7
- data.tar.gz: c535ff6023c543b0f3ad21e183778ab40a430d48ea826d34eccd7b101dc55b3b7f9116a0e2ab431bb50432ecdd3409ad72c295f9303d8ec855a9f0b5dfbe9397
6
+ metadata.gz: 606278928adb1286285f8033653a9ed4128665b475d0d4cd4e3afc6715471c1f3fd5dbc53b4473bb300a190e01a165ce04921556c8fe5c8f21c3b0dc9827fcda
7
+ data.tar.gz: a2f9a35dfbd17b6023c67722598bb3917699c9231235a2723fcfc6884b2d8c8bdf9054c5ecd0205d1898b16f2c16ef78d34d03e62474784ca09dd76318698f54
data/README.md CHANGED
@@ -1,24 +1,28 @@
1
1
  # Wiggle
2
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/wiggle`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Wiggle is a simple gem that allows you to easily create and run snippets of code within a project.
6
4
 
7
5
  ## Installation
8
6
 
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
7
  Install the gem and add to the application's Gemfile by executing:
12
8
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
9
+ $ bundle add wiggle
14
10
 
15
11
  If bundler is not being used to manage dependencies, install the gem by executing:
16
12
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
13
+ $ gem install wiggle
18
14
 
19
15
  ## Usage
20
16
 
21
- TODO: Write usage instructions here
17
+ First, make sure there is a directory in your project for the wiggles you want to run. This can be done manually, or by running the following command in the rails console:
18
+
19
+ wiggle ""
20
+
21
+ Next, create a file with the code you want to run in the wiggle directory. You can make as many or as few of these as you'd like.
22
+
23
+ Lastly, run wiggle files by using the following command in the rails console:
24
+
25
+ wiggle "FILENAME"
22
26
 
23
27
  ## Development
24
28
 
@@ -28,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
32
 
29
33
  ## Contributing
30
34
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/wiggle.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[RemingtonSystems]/wiggle.
32
36
 
33
37
  ## License
34
38
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wiggle
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/wiggle-0.1.0.gem ADDED
Binary file
metadata CHANGED
@@ -1,15 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wiggle
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
  - Max Hampton
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2024-09-10 00:00:00.000000000 Z
10
+ date: 2024-09-12 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: Run snippets of code
12
+ description: Wiggle is a simple tool that allows the running of multiple lines of
13
+ code easily and efficiently.
13
14
  email:
14
15
  - max.hampton@gmail.com
15
16
  executables: []
@@ -24,6 +25,7 @@ files:
24
25
  - lib/wiggle.rb
25
26
  - lib/wiggle/version.rb
26
27
  - sig/wiggle.rbs
28
+ - wiggle-0.1.0.gem
27
29
  homepage: https://github.com/RemingtonSystems/wiggle
28
30
  licenses:
29
31
  - MIT