srm 0.1.0 → 0.3.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 +4 -4
- data/CHANGELOG.md +14 -0
- data/Gemfile +2 -0
- data/README.md +16 -17
- data/lib/srm.rb +1 -1
- data/lib/srm/hash.rb +13 -0
- data/lib/srm/version.rb +3 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c355a2faf061d518c18dcf7f855488018de9995
|
4
|
+
data.tar.gz: 677674efaafc2811ea5e5ed59a8a2ec5a518671f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82c63f06f44d40ede311784bd1be69b2d7ab1a9e67df57eef5aeda85ea70167f08bca18b3c644975c6d7478123363bf4c06c74b4982560d1222b0469babb69b2
|
7
|
+
data.tar.gz: f1f902231e79df4ea63c60a0ae9ef9427baa77a3447ce7a7a3b82763f71a6be71181c50bb7dc3ef976f47f0309a069493388e5aac90dc3dfde917eefeb568c94
|
data/CHANGELOG.md
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,24 +1,25 @@
|
|
1
|
-
# Srm
|
1
|
+
# Srm / Some Ruby Methods
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
- A collection of helpful Ruby methods
|
4
|
+
- This is a prototype
|
5
|
+
- Build w/ Ruby 2.2.3
|
6
|
+
- Tested w/ Rspec 3.4
|
6
7
|
|
7
8
|
## Installation
|
8
9
|
|
9
|
-
|
10
|
+
Install on your system:
|
10
11
|
|
11
|
-
```
|
12
|
-
gem
|
12
|
+
```
|
13
|
+
gem install srm
|
13
14
|
```
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
16
|
+
In your app:
|
20
17
|
|
21
|
-
|
18
|
+
```
|
19
|
+
# Add this to your Gemfile
|
20
|
+
gem 'srm'
|
21
|
+
```
|
22
|
+
And then run `bundle install`
|
22
23
|
|
23
24
|
## Usage
|
24
25
|
|
@@ -26,13 +27,11 @@ TODO: Write usage instructions here
|
|
26
27
|
|
27
28
|
## Development
|
28
29
|
|
29
|
-
|
30
|
-
|
31
|
-
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
|
+
TODO: Write development instructions here
|
32
31
|
|
33
32
|
## Contributing
|
34
33
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
34
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/amorphid/srm. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
36
35
|
|
37
36
|
|
38
37
|
## License
|
data/lib/srm.rb
CHANGED
data/lib/srm/hash.rb
ADDED
data/lib/srm/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: srm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Pope
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- ".gitignore"
|
63
63
|
- ".rspec"
|
64
64
|
- ".travis.yml"
|
65
|
+
- CHANGELOG.md
|
65
66
|
- CODE_OF_CONDUCT.md
|
66
67
|
- Gemfile
|
67
68
|
- LICENSE.txt
|
@@ -70,6 +71,7 @@ files:
|
|
70
71
|
- bin/console
|
71
72
|
- bin/setup
|
72
73
|
- lib/srm.rb
|
74
|
+
- lib/srm/hash.rb
|
73
75
|
- lib/srm/version.rb
|
74
76
|
- srm.gemspec
|
75
77
|
homepage: https://github.com/amorphid/srm
|