active_generator 2.1.0 → 2.2.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f233e2ffe716e07bc59d1dd827712f3f8058d284
|
|
4
|
+
data.tar.gz: 926a8aee602e108193f55aade7480c7fee2c0130
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4086ab809b0a17d5ae76ab810b246953feff8009c88b9f923fa0e1278d74729a03b5ec2ffc4324fb0f4b16cf9717fa03ddea534ef980d63ae94c40f7685bcc05
|
|
7
|
+
data.tar.gz: 609d72493d1bf69c16c9d664fd09af3caa3a75495638457e44391a46ea6b08e6dabf6d71f199d6b8a61ba5d9e11ccea55f22b385adeeaa3875686301a79ae2ed
|
data/README.md
CHANGED
|
@@ -51,7 +51,7 @@ Generates an environment file in the `config/initalizers` directory.
|
|
|
51
51
|
# config/initalizers/active_generator.rb
|
|
52
52
|
|
|
53
53
|
ActiveGenerator.configure do |config|
|
|
54
|
-
#
|
|
54
|
+
# option = default
|
|
55
55
|
|
|
56
56
|
config.autoload_controller_generator_locale = true
|
|
57
57
|
config.autoload_helper_generator_locale = true
|
data/active_generator.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Juan Gomez"]
|
|
10
10
|
spec.email = ["j.gomez@drexed.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
12
|
+
spec.summary = %q{Gem for commonly used generators.}
|
|
13
13
|
spec.description = %q{Extend the base rails generators with commonly used generators.}
|
|
14
14
|
spec.homepage = "https://github.com/drexed/active_generator"
|
|
15
15
|
spec.license = "MIT"
|
|
@@ -2,7 +2,7 @@ module ActiveGenerator
|
|
|
2
2
|
class InstallGenerator < Rails::Generators::Base
|
|
3
3
|
source_root File.expand_path('../templates', __FILE__)
|
|
4
4
|
|
|
5
|
-
def
|
|
5
|
+
def copy_initializer_file
|
|
6
6
|
copy_file("install.rb", "config/initializers/active_generator.rb")
|
|
7
7
|
end
|
|
8
8
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -206,5 +206,5 @@ rubyforge_project:
|
|
|
206
206
|
rubygems_version: 2.4.8
|
|
207
207
|
signing_key:
|
|
208
208
|
specification_version: 4
|
|
209
|
-
summary:
|
|
209
|
+
summary: Gem for commonly used generators.
|
|
210
210
|
test_files: []
|