dkdeploy-rails 0.10.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -4
  3. data/.rvmrc +1 -1
  4. data/CHANGELOG.md +9 -1
  5. data/Gemfile +0 -2
  6. data/LICENSE +1 -1
  7. data/README.md +1 -1
  8. data/Vagrantfile +0 -11
  9. data/dkdeploy-rails.gemspec +5 -7
  10. data/lib/capistrano/dkdeploy/rails.rb +3 -5
  11. data/lib/dkdeploy/rails/version.rb +3 -3
  12. metadata +18 -100
  13. data/features/support/env.rb +0 -2
  14. data/spec/fixtures/application/.rvmrc +0 -8
  15. data/spec/fixtures/application/Capfile +0 -8
  16. data/spec/fixtures/application/Gemfile +0 -9
  17. data/spec/fixtures/application/Version +0 -1
  18. data/spec/fixtures/application/config/assets_exclude_file.txt +0 -1
  19. data/spec/fixtures/application/config/deploy.rb +0 -10
  20. data/spec/fixtures/application/config/deploy/dev.rb +0 -24
  21. data/spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb +0 -12
  22. data/spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb +0 -3
  23. data/spec/fixtures/application/config/preseed/default_content.sql.gz +0 -0
  24. data/spec/fixtures/application/config/preseed/default_structure.sql.gz +0 -0
  25. data/spec/fixtures/application/config/preseed/fileadmin.tar.gz +0 -0
  26. data/spec/fixtures/application/config/preseed/uploads.tar.gz +0 -0
  27. data/spec/fixtures/application/htdocs/.hidden/.gitkeep +0 -0
  28. data/spec/fixtures/application/htdocs/Gemfile +0 -0
  29. data/spec/fixtures/application/htdocs/bower.json +0 -15
  30. data/spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep +0 -0
  31. data/spec/fixtures/application/htdocs/catalog/index.html +0 -1
  32. data/spec/fixtures/application/htdocs/index.html +0 -1
  33. data/spec/fixtures/application/htdocs/stylesheets/test1/config.rb +0 -3
  34. data/spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep +0 -0
  35. data/spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss +0 -5
  36. data/spec/fixtures/application/htdocs/stylesheets/test2/config.rb +0 -3
  37. data/spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep +0 -0
  38. data/spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss +0 -5
  39. data/spec/fixtures/application/temp/dkdeploy.sql.gz +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e4a27a8dc3d7be639b2872cb7270ac18c2612f508a163e7c02c87f39b3e95653
4
- data.tar.gz: 4d186f531e144eaa14afbb3cb3fd6b50497d4600fd01d4f95bef4bb6ddde66e0
3
+ metadata.gz: c05cacdf5fdc4114df5f1f02a55fc8f8343005446c3d9bbe4af8b5ed290ce259
4
+ data.tar.gz: d2df485be75ff3e8b474054e16a85f73d363bba4b6a756c8f5aad333135387d9
5
5
  SHA512:
6
- metadata.gz: beac0aa7f71d25253e124497ddbb7f311127c0c882f601b13f088d9a9da29c6aceb8d366afc210e75d27dd337668138aa663a12e60ba176ccd4eacc05372b19b
7
- data.tar.gz: 4a6f66088883a2bf41fd5258f5581460ca45fdb9b6ab40a4d826ba198b92cbc7009b10a15934246e43f0fa4663cddf4e1d5779c445475fec880b65e97e4cdbe7
6
+ metadata.gz: f8e2036774001d2ce743c5f4e4398f0aaf2b7ffbe9959700895a0fbae03b51381e31113b1040e58b08b3a31d31086af842371e91da925bae43662051ea38fd68
7
+ data.tar.gz: '078bc77f6b981f7e17f3ab49cf0cf7dad3cac8dce999095dfd87be573bcf57851a4771d8b12a4aedd3675959997afac55a5acac179b96df70723f76e51d9520d'
data/.rubocop.yml CHANGED
@@ -1,13 +1,14 @@
1
1
  AllCops:
2
+ NewCops: enable
3
+ TargetRubyVersion: 2.7
4
+ ExtraDetails: true
5
+ DisplayStyleGuide: true
6
+ DisplayCopNames: true
2
7
  Exclude:
3
8
  - 'tmp/**/*'
4
9
  - 'spec/fixtures/application/htdocs/stylesheets/**/config.rb'
5
10
  - 'config/**/*'
6
11
  - 'Vagrantfile'
7
- TargetRubyVersion: 2.7
8
- ExtraDetails: true
9
- DisplayStyleGuide: true
10
- DisplayCopNames: true
11
12
  Style/GlobalVars:
12
13
  AllowedVariables: []
13
14
  Style/TrailingCommaInArrayLiteral:
data/.rvmrc CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
3
  # Define ruby version
4
- rvm use ruby-2.5
4
+ rvm use ruby-2.7
5
5
 
6
6
  # Define aliases
7
7
  alias cucumber="bundle exec cucumber"
data/CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # dkdeploy-rails CHANGELOG
2
2
 
3
- current version: v0.10.0 (2020-07-13)
3
+ current version: v1.0.0 (2021-03-30)
4
+
5
+ ## version 1.0.0
6
+
7
+ - updated dependencies
8
+
9
+ ## version 0.10.1
10
+
11
+ - added missing dependency dkdeploy-core
4
12
 
5
13
  ## version 0.10.0
6
14
 
data/Gemfile CHANGED
@@ -2,5 +2,3 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in dkdeploy-core.gemspec
4
4
  gemspec
5
-
6
- gem 'dkdeploy-core', path: '/Users/dkd-reuschling/development/dkdeploy-core'
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016 dkd Internet Service GmbH, Frankfurt am Main (Germany)
1
+ Copyright (c) 2016-2021 dkd Internet Service GmbH, Frankfurt am Main (Germany)
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
data/README.md CHANGED
@@ -63,7 +63,7 @@ rvm (v1.25.x) with installed Ruby 2.1.
63
63
 
64
64
  Add the virtual box alias to your `hosts` file
65
65
 
66
- 192.168.156.180 dkdeploy.dev
66
+ 192.168.156.180 dkdeploy.test
67
67
 
68
68
  ### Running tests
69
69
 
data/Vagrantfile CHANGED
@@ -1,15 +1,4 @@
1
- # Define path to local chef cookbook and roles repository path
2
- if ENV['VAGRANT_CHEF_REPOSITORY_PATH'] && Dir.exist?(ENV['VAGRANT_CHEF_REPOSITORY_PATH'])
3
- vagrant_chef_repository_path = ENV['VAGRANT_CHEF_REPOSITORY_PATH']
4
- else
5
- vagrant_chef_repository_path = '~/chef-repo-vagrant'
6
- end
7
-
8
1
  Vagrant.configure('2') do |config|
9
-
10
- config.vm.box = 'ubuntu-12-04-server-amd64'
11
- config.vm.box_url = 'http://vagrant.dkd.lan/boxes/v2/ubuntu-12-04-server-amd64.box'
12
-
13
2
  config.vm.define 'master', primary: true do |master_config|
14
3
 
15
4
  master_config.vm.network 'private_network', ip: '192.168.156.180'
@@ -17,15 +17,13 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ['lib']
19
19
 
20
- spec.add_development_dependency 'aruba', '~> 1.0'
21
20
  spec.add_development_dependency 'bundler'
22
- spec.add_development_dependency 'cucumber', '~> 3.1'
23
- spec.add_development_dependency 'pry', '~> 0.12'
21
+ spec.add_development_dependency 'pry', '~> 0.14'
24
22
  spec.add_development_dependency 'rake'
25
- spec.add_development_dependency 'rspec', '~> 3.7'
26
- spec.add_development_dependency 'rubocop', '~> 0.87'
23
+ spec.add_development_dependency 'rspec', '~> 3.10'
24
+ spec.add_development_dependency 'rubocop', '~> 1.12'
27
25
 
26
+ spec.add_dependency 'dkdeploy-core', '~> 10.0'
27
+ spec.add_dependency 'capistrano-rails', '~> 1.6'
28
28
  spec.add_dependency 'capistrano-passenger', '~> 0.2'
29
- spec.add_dependency 'capistrano-rails', '~> 1.3'
30
- spec.add_dependency 'dkdeploy-core', '~> 9.3'
31
29
  end
@@ -1,15 +1,13 @@
1
1
  # Include dkdeploy gem
2
2
  require 'dkdeploy'
3
-
4
3
  require 'capistrano/dkdeploy/core'
5
4
 
5
+ # Rails support for Capistrano
6
+ require 'capistrano/rails'
7
+
6
8
  # Passenger support for Capistrano
7
9
  require 'capistrano/passenger'
8
10
 
9
- require 'capistrano/bundler'
10
- require 'capistrano/rails/assets'
11
- require 'capistrano/rails/migrations'
12
-
13
11
  include Capistrano::DSL
14
12
 
15
13
  namespace :load do
@@ -3,9 +3,9 @@ module Dkdeploy
3
3
  # Class for version number
4
4
  #
5
5
  class Version
6
- MAJOR = 0
7
- MINOR = 10
8
- PATCH = 1
6
+ MAJOR = 1
7
+ MINOR = 0
8
+ PATCH = 0
9
9
 
10
10
  def self.to_s
11
11
  "#{MAJOR}.#{MINOR}.#{PATCH}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dkdeploy-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolai Reuschling
@@ -9,22 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-07-13 00:00:00.000000000 Z
12
+ date: 2021-03-30 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: aruba
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '1.0'
21
- type: :development
22
- prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - "~>"
26
- - !ruby/object:Gem::Version
27
- version: '1.0'
28
14
  - !ruby/object:Gem::Dependency
29
15
  name: bundler
30
16
  requirement: !ruby/object:Gem::Requirement
@@ -39,34 +25,20 @@ dependencies:
39
25
  - - ">="
40
26
  - !ruby/object:Gem::Version
41
27
  version: '0'
42
- - !ruby/object:Gem::Dependency
43
- name: cucumber
44
- requirement: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - "~>"
47
- - !ruby/object:Gem::Version
48
- version: '3.1'
49
- type: :development
50
- prerelease: false
51
- version_requirements: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - "~>"
54
- - !ruby/object:Gem::Version
55
- version: '3.1'
56
28
  - !ruby/object:Gem::Dependency
57
29
  name: pry
58
30
  requirement: !ruby/object:Gem::Requirement
59
31
  requirements:
60
32
  - - "~>"
61
33
  - !ruby/object:Gem::Version
62
- version: '0.12'
34
+ version: '0.14'
63
35
  type: :development
64
36
  prerelease: false
65
37
  version_requirements: !ruby/object:Gem::Requirement
66
38
  requirements:
67
39
  - - "~>"
68
40
  - !ruby/object:Gem::Version
69
- version: '0.12'
41
+ version: '0.14'
70
42
  - !ruby/object:Gem::Dependency
71
43
  name: rake
72
44
  requirement: !ruby/object:Gem::Requirement
@@ -87,70 +59,70 @@ dependencies:
87
59
  requirements:
88
60
  - - "~>"
89
61
  - !ruby/object:Gem::Version
90
- version: '3.7'
62
+ version: '3.10'
91
63
  type: :development
92
64
  prerelease: false
93
65
  version_requirements: !ruby/object:Gem::Requirement
94
66
  requirements:
95
67
  - - "~>"
96
68
  - !ruby/object:Gem::Version
97
- version: '3.7'
69
+ version: '3.10'
98
70
  - !ruby/object:Gem::Dependency
99
71
  name: rubocop
100
72
  requirement: !ruby/object:Gem::Requirement
101
73
  requirements:
102
74
  - - "~>"
103
75
  - !ruby/object:Gem::Version
104
- version: '0.87'
76
+ version: '1.12'
105
77
  type: :development
106
78
  prerelease: false
107
79
  version_requirements: !ruby/object:Gem::Requirement
108
80
  requirements:
109
81
  - - "~>"
110
82
  - !ruby/object:Gem::Version
111
- version: '0.87'
83
+ version: '1.12'
112
84
  - !ruby/object:Gem::Dependency
113
- name: capistrano-passenger
85
+ name: dkdeploy-core
114
86
  requirement: !ruby/object:Gem::Requirement
115
87
  requirements:
116
88
  - - "~>"
117
89
  - !ruby/object:Gem::Version
118
- version: '0.2'
90
+ version: '10.0'
119
91
  type: :runtime
120
92
  prerelease: false
121
93
  version_requirements: !ruby/object:Gem::Requirement
122
94
  requirements:
123
95
  - - "~>"
124
96
  - !ruby/object:Gem::Version
125
- version: '0.2'
97
+ version: '10.0'
126
98
  - !ruby/object:Gem::Dependency
127
99
  name: capistrano-rails
128
100
  requirement: !ruby/object:Gem::Requirement
129
101
  requirements:
130
102
  - - "~>"
131
103
  - !ruby/object:Gem::Version
132
- version: '1.3'
104
+ version: '1.6'
133
105
  type: :runtime
134
106
  prerelease: false
135
107
  version_requirements: !ruby/object:Gem::Requirement
136
108
  requirements:
137
109
  - - "~>"
138
110
  - !ruby/object:Gem::Version
139
- version: '1.3'
111
+ version: '1.6'
140
112
  - !ruby/object:Gem::Dependency
141
- name: dkdeploy-core
113
+ name: capistrano-passenger
142
114
  requirement: !ruby/object:Gem::Requirement
143
115
  requirements:
144
116
  - - "~>"
145
117
  - !ruby/object:Gem::Version
146
- version: '9.3'
118
+ version: '0.2'
147
119
  type: :runtime
148
120
  prerelease: false
149
121
  version_requirements: !ruby/object:Gem::Requirement
150
122
  requirements:
151
123
  - - "~>"
152
124
  - !ruby/object:Gem::Version
153
- version: '9.3'
125
+ version: '0.2'
154
126
  description: dkd Rails deployment tasks and strategies
155
127
  email:
156
128
  - nicolai.reuschling@dkd.de
@@ -172,37 +144,10 @@ files:
172
144
  - config/vm/cookbooks/dkdeploy/metadata.rb
173
145
  - config/vm/cookbooks/dkdeploy/recipes/default.rb
174
146
  - dkdeploy-rails.gemspec
175
- - features/support/env.rb
176
147
  - lib/capistrano/dkdeploy/rails.rb
177
148
  - lib/dkdeploy.rb
178
149
  - lib/dkdeploy/rails/i18n.rb
179
150
  - lib/dkdeploy/rails/version.rb
180
- - spec/fixtures/application/.rvmrc
181
- - spec/fixtures/application/Capfile
182
- - spec/fixtures/application/Gemfile
183
- - spec/fixtures/application/Version
184
- - spec/fixtures/application/config/assets_exclude_file.txt
185
- - spec/fixtures/application/config/deploy.rb
186
- - spec/fixtures/application/config/deploy/dev.rb
187
- - spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb
188
- - spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb
189
- - spec/fixtures/application/config/preseed/default_content.sql.gz
190
- - spec/fixtures/application/config/preseed/default_structure.sql.gz
191
- - spec/fixtures/application/config/preseed/fileadmin.tar.gz
192
- - spec/fixtures/application/config/preseed/uploads.tar.gz
193
- - spec/fixtures/application/htdocs/.hidden/.gitkeep
194
- - spec/fixtures/application/htdocs/Gemfile
195
- - spec/fixtures/application/htdocs/bower.json
196
- - spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep
197
- - spec/fixtures/application/htdocs/catalog/index.html
198
- - spec/fixtures/application/htdocs/index.html
199
- - spec/fixtures/application/htdocs/stylesheets/test1/config.rb
200
- - spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep
201
- - spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss
202
- - spec/fixtures/application/htdocs/stylesheets/test2/config.rb
203
- - spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep
204
- - spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss
205
- - spec/fixtures/application/temp/dkdeploy.sql.gz
206
151
  homepage: https://redmine.dkd.de/projects/dkdeploy/wiki
207
152
  licenses:
208
153
  - MIT
@@ -222,35 +167,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
167
  - !ruby/object:Gem::Version
223
168
  version: '0'
224
169
  requirements: []
225
- rubygems_version: 3.0.8
170
+ rubygems_version: 3.2.15
226
171
  signing_key:
227
172
  specification_version: 4
228
173
  summary: dkd Rails deployment tasks and strategies
229
- test_files:
230
- - features/support/env.rb
231
- - spec/fixtures/application/.rvmrc
232
- - spec/fixtures/application/Capfile
233
- - spec/fixtures/application/Gemfile
234
- - spec/fixtures/application/Version
235
- - spec/fixtures/application/config/assets_exclude_file.txt
236
- - spec/fixtures/application/config/deploy.rb
237
- - spec/fixtures/application/config/deploy/dev.rb
238
- - spec/fixtures/application/config/etc/apache2/conf/.htaccess.erb
239
- - spec/fixtures/application/config/etc/apache2/conf/dev.htaccess.erb
240
- - spec/fixtures/application/config/preseed/default_content.sql.gz
241
- - spec/fixtures/application/config/preseed/default_structure.sql.gz
242
- - spec/fixtures/application/config/preseed/fileadmin.tar.gz
243
- - spec/fixtures/application/config/preseed/uploads.tar.gz
244
- - spec/fixtures/application/htdocs/.hidden/.gitkeep
245
- - spec/fixtures/application/htdocs/Gemfile
246
- - spec/fixtures/application/htdocs/bower.json
247
- - spec/fixtures/application/htdocs/catalog/.hidden/.gitkeep
248
- - spec/fixtures/application/htdocs/catalog/index.html
249
- - spec/fixtures/application/htdocs/index.html
250
- - spec/fixtures/application/htdocs/stylesheets/test1/config.rb
251
- - spec/fixtures/application/htdocs/stylesheets/test1/css/.gitkeep
252
- - spec/fixtures/application/htdocs/stylesheets/test1/src/source.scss
253
- - spec/fixtures/application/htdocs/stylesheets/test2/config.rb
254
- - spec/fixtures/application/htdocs/stylesheets/test2/css/.gitkeep
255
- - spec/fixtures/application/htdocs/stylesheets/test2/src/source.scss
256
- - spec/fixtures/application/temp/dkdeploy.sql.gz
174
+ test_files: []
@@ -1,2 +0,0 @@
1
- require 'dkdeploy/test/application'
2
- TEST_APPLICATION = Dkdeploy::Test::Application.new File.expand_path('lib', __dir__)
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- # Define ruby version
4
- rvm use ruby-2.1
5
-
6
- # Define aliases
7
- alias cap="bundle exec cap"
8
- alias compass="bundle exec compass"
@@ -1,8 +0,0 @@
1
- # Load DSL and Setup Up Stages
2
- require 'capistrano/setup'
3
-
4
- # Includes default deployment tasks
5
- require 'capistrano/deploy'
6
-
7
- # Includes dkdeploy deployment tasks
8
- require 'capistrano/dkdeploy/rails'
@@ -1,9 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'dkdeploy-rails', path: '../../'
4
-
5
- # Gem for task "assets:compile_compass"
6
- gem 'compass', '~> 0.12.0'
7
-
8
- # for debugging only
9
- gem 'pry', '~> 0.10.0'
@@ -1 +0,0 @@
1
- 1.0.0
@@ -1 +0,0 @@
1
- should_be_excluded.txt
@@ -1,10 +0,0 @@
1
- set :application, 'test_app'
2
-
3
- SSHKit.config.command_map.prefix[:compass].push 'bundle exec'
4
- SSHKit.config.command_map.prefix[:chown].push 'sudo'
5
- SSHKit.config.command_map.prefix[:chgrp].push 'sudo'
6
- SSHKit.config.command_map.prefix[:chmod].push 'sudo'
7
-
8
- set :asset_folders, %w[fileadmin uploads]
9
- set :asset_default_content, %w[fileadmin uploads]
10
- set :asset_exclude_file, 'config/assets_exclude_file.txt'
@@ -1,24 +0,0 @@
1
- set :deploy_to, '/home/vagrant/deploy'
2
- server 'dkdeploy.dev', roles: %w[web app]
3
-
4
- # no ssh compression on the dev stage
5
- set :ssh_options, {
6
- compression: 'none'
7
- }
8
-
9
- set :copy_source, 'htdocs'
10
- set :copy_exclude, %w[
11
- Gemfile*
12
- .hidden
13
- **/.hidden
14
- ]
15
-
16
- # version file path
17
- set :version_file_path, ''
18
-
19
- # default file owner/group for dev stage
20
- set :default_file_access_owner_of_shared_path, 'vagrant'
21
- set :default_file_access_owner_of_release_path, 'vagrant'
22
-
23
- set :default_file_access_group_of_shared_path, 'vagrant'
24
- set :default_file_access_group_of_release_path, 'vagrant'
@@ -1,12 +0,0 @@
1
- <FilesMatch "index.php">
2
- Allow from all
3
- </FilesMatch>
4
- <%=
5
- current_stage = fetch(:stage).to_s
6
- current_stage_htaccess_file_configuration_path = current_stage + '.htaccess.erb'
7
- sub_template_file_path = File.expand_path File.join(apache_configuration_path, current_stage_htaccess_file_configuration_path)
8
- if File.exists? sub_template_file_path
9
- sub_template = ERB.new File.read(sub_template_file_path)
10
- sub_template.result
11
- end
12
- %>
@@ -1,3 +0,0 @@
1
- <Files "favicon.ico">
2
- Deny from all
3
- </Files>
File without changes
File without changes
@@ -1,15 +0,0 @@
1
- {
2
- "name": "dkdeploy-core-bower-fixture-file",
3
- "version": "0.0.1",
4
- "authors": [
5
- "Nicolai Reuschling <nicolai.reuschling@dkd.de>"
6
- ],
7
- "description": "This is a fixture bower.js file for dkdeploy-core",
8
- "moduleType": [
9
- "globals"
10
- ],
11
- "license": "MIT",
12
- "dependencies": {
13
- "jquery": "2.1.4"
14
- }
15
- }
@@ -1 +0,0 @@
1
- Hello World
@@ -1 +0,0 @@
1
- Hello World
@@ -1,3 +0,0 @@
1
- project_type = :stand_alone
2
- css_dir = 'css'
3
- sass_dir = 'src'
@@ -1,5 +0,0 @@
1
- ul {
2
- li{
3
- color: green;
4
- }
5
- }
@@ -1,3 +0,0 @@
1
- project_type = :stand_alone
2
- css_dir = 'css'
3
- sass_dir = 'src'
@@ -1,5 +0,0 @@
1
- ul {
2
- li{
3
- color: green;
4
- }
5
- }