beerify 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 +30 -0
- data/lib/beerify/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf20742c2a166f2fbcbbeed6cadff1f30f7192b5
|
|
4
|
+
data.tar.gz: 1ae434257299e2e55433e05562c516855e6c3182
|
|
5
5
|
!binary "U0hBNTEy":
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d142a8c1326f58e43a22264767cb3aa5c7a59e2722ddbe00e939bce4c5a279239fd33469e90c9b7546b9431bcf97257163e05c6e36b5f4357bd1a77b992bff44
|
|
7
|
+
data.tar.gz: 116e096e993ebe418b6b76cbe4d24751922a0b8a4b301f0b55c50d4acfa3ed1036d3d008c07b7965f4eaae987dacc51d3b56d5bff205a8772798b6ba48ed7869
|
data/README.md
CHANGED
|
@@ -4,8 +4,38 @@
|
|
|
4
4
|
[](https://travis-ci.org/epnet/beerify)
|
|
5
5
|
[](https://coveralls.io/r/epnet/beerify?branch=develop)
|
|
6
6
|
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
gem 'beerify'
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install beerify
|
|
20
|
+
|
|
21
|
+
## Files
|
|
22
|
+
|
|
23
|
+
* app/assets/javascripts/application.js
|
|
24
|
+
```js
|
|
25
|
+
//= require beerify/application
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
* app/assets/stylesheets/application.css
|
|
29
|
+
```css
|
|
30
|
+
/*
|
|
31
|
+
*= require beerify/application
|
|
32
|
+
*/
|
|
33
|
+
```
|
|
34
|
+
|
|
7
35
|
## Populate your database
|
|
8
36
|
|
|
9
37
|
```rb
|
|
10
38
|
rake beerify:db:populate
|
|
11
39
|
```
|
|
40
|
+
|
|
41
|
+
> Don't forget to copy the misc folder inside your app
|
data/lib/beerify/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beerify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- EPNet
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-09-
|
|
13
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: cancan
|
|
@@ -418,8 +418,7 @@ dependencies:
|
|
|
418
418
|
- - ">="
|
|
419
419
|
- !ruby/object:Gem::Version
|
|
420
420
|
version: '0'
|
|
421
|
-
description:
|
|
422
|
-
beers, love and ideas for sales.
|
|
421
|
+
description: The rails engine which lets you the time to drink some beers!
|
|
423
422
|
email:
|
|
424
423
|
- epnetarras@gmail.com
|
|
425
424
|
- baptiste.lecocq@gmail.com
|
|
@@ -564,8 +563,9 @@ files:
|
|
|
564
563
|
- spec/dummy/Rakefile
|
|
565
564
|
- spec/dummy/README.rdoc
|
|
566
565
|
- spec/spec_helper.rb
|
|
567
|
-
homepage: https://github.com/
|
|
568
|
-
licenses:
|
|
566
|
+
homepage: https://github.com/epnet/beerify
|
|
567
|
+
licenses:
|
|
568
|
+
- MIT
|
|
569
569
|
metadata: {}
|
|
570
570
|
post_install_message:
|
|
571
571
|
rdoc_options: []
|