partystreusel 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -1
- data/README.md +1 -1
- data/lib/partystreusel.rb +6 -3
- data/lib/partystreusel/version.rb +1 -1
- metadata +1 -1
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
[![Build Status](https://travis-ci.org/screenconcept/partystreusel.svg?branch=development)](https://travis-ci.org/screenconcept/partystreusel)
|
2
2
|
# Partystreusel
|
3
3
|
|
4
|
-
## Installation
|
4
|
+
## Installation Rails
|
5
5
|
|
6
6
|
Add **partystreusel** to your Gemfile `gem 'partystreusel'` and bundle.
|
7
7
|
|
data/lib/partystreusel.rb
CHANGED
@@ -1,9 +1,12 @@
|
|
1
|
-
|
2
|
-
module
|
3
|
-
|
1
|
+
if defined?(Rails)
|
2
|
+
module Partystreusel
|
3
|
+
module Rails
|
4
|
+
class Engine < ::Rails::Engine
|
5
|
+
end
|
4
6
|
end
|
5
7
|
end
|
6
8
|
end
|
9
|
+
|
7
10
|
require "partystreusel/version"
|
8
11
|
require "partystreusel/helpers"
|
9
12
|
|