flowcation 0.2.15 → 0.2.16
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 906276e9c89b9acc1a19fdc27b579bbb8208face
|
4
|
+
data.tar.gz: 87fb56d13635be447185e5c220abc40feb0b027d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f82e1e592adb4f5ee96d29a47a44e298c48e40f3529c43558ee6d3390fb9a840d500e5d26c512c48e0313aa948b9ca8ae3fb66373d3161b63e72a7595b3c0b92
|
7
|
+
data.tar.gz: 10f0e9b7394df5d6177f93f98c72ce75a0dc0f38ab27eb39c0eb4b16b3b0728c85c1c4bc4e190ca1e1b4b81e5c19b00b8d2557d1355a0b79a78049f782630ca6
|
data/Gemfile.lock
CHANGED
data/lib/flowcation/version.rb
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
#require 'rails/generators'
|
2
|
+
require 'rails/generators'
|
3
|
+
require 'rails/generators/base'
|
4
|
+
module Flowcation
|
5
|
+
module Generate
|
6
|
+
class ConfigGenerator < Rails::Generators::Base
|
7
|
+
desc "This generator creates a basic rails.yml file at config/flowcation"
|
8
|
+
source_root File.expand_path("./templates", __FILE__)
|
9
|
+
def copy_config_file
|
10
|
+
copy_file "rails.yml", "config/flowcation/rails.yml"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flowcation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthias Hennemeyer
|
@@ -118,6 +118,8 @@ files:
|
|
118
118
|
- lib/flowcation/substitutions.rb
|
119
119
|
- lib/flowcation/template.rb
|
120
120
|
- lib/flowcation/version.rb
|
121
|
+
- lib/generators/flowcation/generate/config_generator.rb
|
122
|
+
- lib/generators/flowcation/generate/templates/rails.yml
|
121
123
|
homepage: http://www.flowcation.com
|
122
124
|
licenses:
|
123
125
|
- MIT
|