sleepers 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -14
  3. data/lib/sleepers/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4958ef86a1cc10356deb8383b3cd1369725ae1fc
4
- data.tar.gz: afa0fd10f1f26c3873a076d4330f56a234b19114
3
+ metadata.gz: 33c6e9a921c1fd1ba9ad4fff059aa430bb84bd0a
4
+ data.tar.gz: 12105689e7810430ad94a25ef89cbdf81ec9f323
5
5
  SHA512:
6
- metadata.gz: cffafedfeea6dfff15776773a5b63f41f442a662d6c266c3517df4cefcf6b737f557fea217f84f6ed9d93c76f67a46cbc4e6d50156e5cd796578e716bfa0a4eb
7
- data.tar.gz: aed8c8a9104fcfcc2134f8424d96a8e3ef58c7c7b673c18fffad84cf39c2c1e3f9dc770892ce23ff0d7cbeaf4b390d8ae87c491f39a36e162ee237539ac91a3d
6
+ metadata.gz: 917ab27ce830a136bff306c3f56b25530f1e25f6e48d42ff50ba4cc532c34baa59735e569589ea8bb1948bc47997279ee30914dc45887cb0db0c8c7169743737
7
+ data.tar.gz: cf1ca08422a56ef94b4b54adfe4725189150d7065d6d07ca0a3f0d7fc995a3c9f48c422a141b70a12ef3d2c23460b696a729f8307a5d9e2f16a3f86a5e09eca8
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Sleepers
2
2
 
3
- 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/sleepers`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Write usage instructions here
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).
@@ -1,3 +1,3 @@
1
1
  module Sleepers
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sleepers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyrone Wilson