activeadmin-generator 0.0.5 → 0.0.6
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.
@@ -26,16 +26,20 @@ module ::Bricks
|
|
26
26
|
say "Name available!"
|
27
27
|
@heroku_app = heroku.post_app('name' => @heroku_appname)
|
28
28
|
say "Heroku app created!"
|
29
|
-
@heroku_collaborators.each do |email|
|
30
|
-
say "Adding #{email} as collaborator"
|
31
|
-
heroku.post_collaborator(@heroku_appname, email)
|
32
|
-
say "#{email} added as collaborator"
|
33
|
-
end
|
34
29
|
rescue ::Heroku::API::Errors::Forbidden
|
35
30
|
say "Name already taken! :("
|
36
31
|
end
|
37
32
|
end while @heroku_app.blank?
|
38
33
|
|
34
|
+
@heroku_collaborators.each do |email|
|
35
|
+
say "Adding #{email} as collaborator"
|
36
|
+
heroku.post_collaborator(@heroku_appname, email)
|
37
|
+
say "#{email} added as collaborator"
|
38
|
+
end
|
39
|
+
|
40
|
+
say "Adding user-env-compile feature..."
|
41
|
+
heroku.post_feature('user-env-compile', @heroku_appname)
|
42
|
+
|
39
43
|
git remote: "add heroku #{@heroku_app.body['git_url']}"
|
40
44
|
|
41
45
|
gsub_file "config/environments/production.rb", /Don't fallback to assets pipeline/, "Fallback to assets pipeline"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeadmin-generator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|