sleepers 0.0.6 → 0.0.7
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 -14
- data/lib/sleepers/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33c6e9a921c1fd1ba9ad4fff059aa430bb84bd0a
|
4
|
+
data.tar.gz: 12105689e7810430ad94a25ef89cbdf81ec9f323
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 917ab27ce830a136bff306c3f56b25530f1e25f6e48d42ff50ba4cc532c34baa59735e569589ea8bb1948bc47997279ee30914dc45887cb0db0c8c7169743737
|
7
|
+
data.tar.gz: cf1ca08422a56ef94b4b54adfe4725189150d7065d6d07ca0a3f0d7fc995a3c9f48c422a141b70a12ef3d2c23460b696a729f8307a5d9e2f16a3f86a5e09eca8
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Sleepers
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Provides common gems that are useful in all rails applications and which encourage clean and well encapsulated code styles as well as those which provide convenience
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,19 +20,20 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
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.
|
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).
|
32
|
-
|
33
|
-
## Contributing
|
34
|
-
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sleepers.
|
23
|
+
Usage is the same as installing each gem individually
|
36
24
|
|
25
|
+
gems included are
|
37
26
|
|
27
|
+
```
|
28
|
+
# Convenience
|
29
|
+
gem 'hashie'
|
30
|
+
|
31
|
+
# Debug and output
|
32
|
+
gem 'table_print'
|
33
|
+
gem 'awesome_print'
|
34
|
+
gem 'pry-byebug' # With configuration to behave like byebug
|
35
|
+
gem 'simple_command'
|
36
|
+
```
|
38
37
|
## License
|
39
38
|
|
40
39
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/lib/sleepers/version.rb
CHANGED