epom 0.9.7 → 0.9.8
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/lib/epom/version.rb +1 -1
- data/lib/generators/epom/config/config_generator.rb +5 -2
- metadata +2 -4
- data/test/dummy/config/initializers/epom.rb +0 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e997d0419bd172d815844300d43e565492aab1cf
|
|
4
|
+
data.tar.gz: fd3eb04de119bc6632edb72ac0b973ef4669d6a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb9e40d080beb954c666782408e9ba18c297d387bbf131f2fb20c1083c90191442c479473545817395d2fbd72ab03dc8c985233d2cdf1974d5b58d317250771d
|
|
7
|
+
data.tar.gz: 8ed96714df53ce2c06916b4a51e7cbe86d2fe2143ead722cd262391d66f6a8a46cb9ad679426216d25f43879b510c7b08db3bd524f0815a38710ae37a029bdd9
|
data/lib/epom/version.rb
CHANGED
|
@@ -5,8 +5,11 @@ module Epom
|
|
|
5
5
|
def copy_epom_file
|
|
6
6
|
template 'epom.rb', 'config/initializers/epom.rb'
|
|
7
7
|
if File.exist?('.gitignore')
|
|
8
|
-
|
|
8
|
+
File.open('.gitignore','a'){|f| f.write("\nconfig/initializers/epom.rb")}
|
|
9
9
|
end
|
|
10
|
-
|
|
10
|
+
if File.exist?('../../.gitignore')
|
|
11
|
+
File.open('../../.gitignore','a'){|f| f.write("\ntest/dummy/config/initializers/epom.rb")}
|
|
12
|
+
end
|
|
13
|
+
end
|
|
11
14
|
end
|
|
12
15
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: epom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Quintero
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2015-07-
|
|
13
|
+
date: 2015-07-22 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rails
|
|
@@ -153,7 +153,6 @@ files:
|
|
|
153
153
|
- test/dummy/config/initializers/assets.rb
|
|
154
154
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
155
155
|
- test/dummy/config/initializers/cookies_serializer.rb
|
|
156
|
-
- test/dummy/config/initializers/epom.rb
|
|
157
156
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
158
157
|
- test/dummy/config/initializers/inflections.rb
|
|
159
158
|
- test/dummy/config/initializers/mime_types.rb
|
|
@@ -234,7 +233,6 @@ test_files:
|
|
|
234
233
|
- test/dummy/config/initializers/mime_types.rb
|
|
235
234
|
- test/dummy/config/initializers/inflections.rb
|
|
236
235
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
237
|
-
- test/dummy/config/initializers/epom.rb
|
|
238
236
|
- test/dummy/config/initializers/cookies_serializer.rb
|
|
239
237
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
240
238
|
- test/dummy/config/initializers/assets.rb
|