helix-rails 0.5.0.alpha.2 → 0.5.0.alpha.4
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: b41017e3b863cfb7de43c1f9709c0a5f11edf574
|
4
|
+
data.tar.gz: 6f516d620111c7b83d2586dda99cdd04ac650eef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f50c52cab65ef0b0b6fa2bfadb53aa157ff74fea6443240a095051f0ce1a2cbbb24456efcbeba32bb5a95e256aebd08ec666a04bc0566556e65bc8eb4a8f80e5
|
7
|
+
data.tar.gz: eec47ccaeec291e958f2f394cb49f90d02ffbcbbbee7d24718d7547fa6909046acf47b01391feaadb555f229d29c4fc504f0772ff100da479c473b353217d819
|
data/helix-rails.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
16
|
spec.require_paths = ["lib"]
|
17
17
|
|
18
|
-
spec.add_dependency "helix_runtime", ">= 0.5.0.alpha.
|
18
|
+
spec.add_dependency "helix_runtime", ">= 0.5.0.alpha.4"
|
19
19
|
spec.add_dependency "rails", ">= 4.0"
|
20
20
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.10"
|
@@ -2,13 +2,13 @@ require 'helix_runtime/cli'
|
|
2
2
|
|
3
3
|
# This should really be HelixRuntime, but we want nicer naming
|
4
4
|
module Helix
|
5
|
-
class
|
5
|
+
class CrateGenerator < Rails::Generators::Base
|
6
6
|
desc "add Helix crate"
|
7
7
|
argument :name, :type => :string
|
8
8
|
|
9
9
|
def add_crate
|
10
10
|
cli = HelixRuntime::CLI::Base.new
|
11
|
-
cli.invoke(:
|
11
|
+
cli.invoke(:crate, [name])
|
12
12
|
end
|
13
13
|
end
|
14
14
|
end
|
@@ -5,6 +5,10 @@ module HelixRuntime
|
|
5
5
|
class Railtie < ::Rails::Railtie
|
6
6
|
config.helix = ActiveSupport::OrderedOptions.new
|
7
7
|
|
8
|
+
rake_tasks do
|
9
|
+
load File.expand_path("../../../tasks/helix.rake", __FILE__)
|
10
|
+
end
|
11
|
+
|
8
12
|
initializer "helix.build_check" do |app|
|
9
13
|
project = HelixRuntime::ParentProject.new(app.root)
|
10
14
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helix-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.0.alpha.
|
4
|
+
version: 0.5.0.alpha.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Wagenet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: helix_runtime
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.5.0.alpha.
|
19
|
+
version: 0.5.0.alpha.4
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.5.0.alpha.
|
26
|
+
version: 0.5.0.alpha.4
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -62,7 +62,7 @@ files:
|
|
62
62
|
- ".gitignore"
|
63
63
|
- Gemfile
|
64
64
|
- helix-rails.gemspec
|
65
|
-
- lib/generators/helix/
|
65
|
+
- lib/generators/helix/crate_generator.rb
|
66
66
|
- lib/generators/helix/install_generator.rb
|
67
67
|
- lib/helix-rails.rb
|
68
68
|
- lib/helix/rails.rb
|
@@ -70,6 +70,7 @@ files:
|
|
70
70
|
- lib/helix_runtime/rails/check_outdated.rb
|
71
71
|
- lib/helix_runtime/rails/railtie.rb
|
72
72
|
- lib/helix_runtime/rails/version.rb
|
73
|
+
- lib/tasks/helix.rake
|
73
74
|
homepage: https://github.com/tildeio/helix-rails
|
74
75
|
licenses: []
|
75
76
|
metadata: {}
|