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 +4 -4
- data/README.md +13 -9
- data/lib/wiggle/version.rb +1 -1
- data/wiggle-0.1.0.gem +0 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2075721b2c6214e400ee148594ecd22deecaac37ca4a7dad66cf5ffb5c46270a
|
4
|
+
data.tar.gz: 0b67c52babd516d4c91a4563923fa750d7e7c17de04224a44748607f763d63b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 606278928adb1286285f8033653a9ed4128665b475d0d4cd4e3afc6715471c1f3fd5dbc53b4473bb300a190e01a165ce04921556c8fe5c8f21c3b0dc9827fcda
|
7
|
+
data.tar.gz: a2f9a35dfbd17b6023c67722598bb3917699c9231235a2723fcfc6884b2d8c8bdf9054c5ecd0205d1898b16f2c16ef78d34d03e62474784ca09dd76318698f54
|
data/README.md
CHANGED
@@ -1,24 +1,28 @@
|
|
1
1
|
# Wiggle
|
2
2
|
|
3
|
-
|
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
|
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
|
13
|
+
$ gem install wiggle
|
18
14
|
|
19
15
|
## Usage
|
20
16
|
|
21
|
-
|
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/[
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[RemingtonSystems]/wiggle.
|
32
36
|
|
33
37
|
## License
|
34
38
|
|
data/lib/wiggle/version.rb
CHANGED
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.
|
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
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
11
11
|
dependencies: []
|
12
|
-
description:
|
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
|