primify 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 +4 -6
- data/lib/primify/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: d81e0c6f18c7b002637b2e28ad036f9e6c654818
|
4
|
+
data.tar.gz: f7d2dbdd7816e40c3d3af6af90c1547a8fcc53f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e0459eeecb3af06caed878605339cbaececb39fb839ce1772886b3f16150bcfa82a3dba20bbbfd20e5c364a8a92416ddbb6d3fc4530633694c5186cddca39c6b
|
7
|
+
data.tar.gz: cc28cea1c8caee4b393b8b2134965d0389890c9b00ea308ae59850307bf4911e28305c52762885b387c50041d11232e167f1d0c5e101c2036de7aa6fe0b073e0
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Primify
|
2
2
|
|
3
|
-
Welcome to
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Welcome to primify! This a prime number generator which will help you generate first n prime numbers. You just have to call generate method of Prime class and pass it an number and it will generate and return Prime numbers
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,13 +20,13 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
23
|
+
You can Use it by simply requiring primify's Prime class
|
26
24
|
|
27
|
-
## Development
|
25
|
+
<!-- ## Development
|
28
26
|
|
29
27
|
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
28
|
|
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).
|
29
|
+
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
30
|
|
33
31
|
## Contributing
|
34
32
|
|
data/lib/primify/version.rb
CHANGED