search_rails 1.0.1 → 1.0.2
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 +6 -10
- data/lib/search_rails/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: 94253c97413a5ae2697e9e55e5b1dec2096b3353
|
4
|
+
data.tar.gz: 82338b6cccb0cbe5f226c4fec67cfb30fb798e9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb9a6f61eceba6ac9ef1d3b702e96733e405087e22f4a7209b2367f22747bc54db4ecd2bbf79ce974fc1fefae005e8c999bec0056cb3c076de5f135a463571db
|
7
|
+
data.tar.gz: b7993e992b6bcbbc8da63bbc7d42f37c75e3aad39eaa3a080299e04536c3d75ef414039b2bc117da1d510ad6534eecdfa070c0865d0c4c4ac28548c332be6fc3
|
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# SearchRails
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
A Simple Search Gem For Ruby On Rails
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,17 +20,15 @@ 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.
|
23
|
+
To install the search functionality, type the command
|
30
24
|
|
31
|
-
|
25
|
+
```ruby
|
26
|
+
search:install
|
27
|
+
```
|
32
28
|
|
33
29
|
## Contributing
|
34
30
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/micahnico/search_rails.
|
36
32
|
|
37
33
|
|
38
34
|
## License
|
data/lib/search_rails/version.rb
CHANGED