wagn 1.18.4 → 1.18.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e933d025e07645dd7f92d25942d0ecc4665355a3
4
- data.tar.gz: 0658db4a559f088eb629e608568c44da66e5c9e4
3
+ metadata.gz: 79ff0e554520287e0bf0ddff40a0be9285e427c7
4
+ data.tar.gz: daa96e17edce87930c2ee83b4593e00fdbcb7f74
5
5
  SHA512:
6
- metadata.gz: 68b1be15a9980ba07e2c8e750b8d1df15ee8f158c67c937dcc27b499d6c097abff25acfa2c8112b51a507b1414368477c8450eea07412fa78f5c353676c2342d
7
- data.tar.gz: 2cfe84024ef8f98c1bf5f82e9b0694ee38c439335f3a3cb3b90aeec7801f2d25532629a84a8427b69319c814a49266ebb51254026a03559f1333702f815954f8
6
+ metadata.gz: 05086fdf37eaef8649776d437708c824a0a24b93c6dae2caff1632ada312a7d80c57084f2ad116b5bb68b491505705d08d6e37981d6c1c96e55590ddacac30b3
7
+ data.tar.gz: b2a6246be28895fcd6ffd7eb7e059600ba5d3536148b866075fbe10deb9f472de98f91cede7117232936de86d25e3104a01318ba6a9f9c4bee2ad5db6e373afd
@@ -23,11 +23,12 @@ end
23
23
  group :test, :development do
24
24
  gem 'rails-dev-tweaks'
25
25
  gem 'jasmine'
26
- gem 'jasmine-rails', :git=>"https://github.com/chuenlok/jasmine-rails.git"
26
+ gem 'jasmine-rails' #, :git=>"https://github.com/chuenlok/jasmine-rails.git"
27
27
  gem 'jasmine-jquery-rails'
28
28
  gem 'sprockets' # just so above works
29
29
  <%- if spring_install? %>
30
30
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
31
+ gem 'listen', '3.0.6'
31
32
  gem 'spring'
32
33
  gem 'spring-commands-rspec'
33
34
  gem 'spring-commands-cucumber'
@@ -97,7 +98,9 @@ gem 'ruby-prof', :group=>:profile # profiling
97
98
 
98
99
  group :development, :test do
99
100
  <%- if spring_install? %>
101
+ gem 'listen', '3.0.6'
100
102
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
103
+ gem 'listen', '3.0.6'
101
104
  gem 'spring'
102
105
  gem 'spring-commands-rspec'
103
106
  gem 'spring-commands-cucumber'
@@ -107,7 +110,7 @@ group :development, :test do
107
110
  gem 'pry-rescue'
108
111
  # gem 'pry-stack_explorer'
109
112
  gem 'jasmine'
110
- gem 'jasmine-rails', :git=>"https://github.com/chuenlok/jasmine-rails.git"
113
+ gem 'jasmine-rails' #, :git=>"https://github.com/chuenlok/jasmine-rails.git"
111
114
  gem 'jasmine-jquery-rails'
112
115
  gem 'phantomjs', '1.9.7.1' #locked because 1.9.8.0 is breaking
113
116
  end
@@ -2,7 +2,7 @@
2
2
  # relative path from Rails.root
3
3
  # defaults to app/assets/javascripts
4
4
  # useless for wagn file structure
5
- src_dir: <%= Cardio.gem_root %>/mod/03_machines/lib/javascript
5
+ src_dir: <%= @cardio_gem_root %>/mod/03_machines/lib/javascript
6
6
  #"app/assets/javascripts"
7
7
 
8
8
  # path to additional directory of source file that are not part of assets pipeline and need to be included
@@ -15,7 +15,7 @@ src_dir: <%= Cardio.gem_root %>/mod/03_machines/lib/javascript
15
15
  # relative path from Rails.root
16
16
  # defaults to app/assets/stylesheets
17
17
  # useless for wagn file structure
18
- css_dir: <%= Cardio.gem_root %>/mod/03_machines/lib/stylesheets
18
+ css_dir: <%= @cardio_gem_root %>/mod/03_machines/lib/stylesheets
19
19
 
20
20
  # list of file expressions to include as source files
21
21
  # relative path from src_dir
@@ -41,7 +41,7 @@ css_files:
41
41
  # - "**/*.{css,scss}"
42
42
  # THIS IS IMPORTANT!!!
43
43
  include_dir:
44
- - <%= Cardio.gem_root %>/mod/03_machines/lib/javascript
44
+ - <%= @cardio_gem_root %>/mod/03_machines/lib/javascript
45
45
  # path to parent directory of spec_files
46
46
  # relative path from Rails.root
47
47
  #
@@ -51,7 +51,7 @@ include_dir:
51
51
  # - ../engine/spec/javascripts
52
52
  #
53
53
  # defaults to spec/javascripts
54
- spec_dir: <%= Wagn.gem_root %>/spec/javascripts
54
+ spec_dir: <%= @wagn_gem_root %>/spec/javascripts
55
55
 
56
56
  # list of file expressions to include as helpers into spec runner
57
57
  # relative path from spec_dir
@@ -166,8 +166,11 @@ class WagnGenerator < Rails::Generators::AppBase
166
166
  @spec_path = @gem_path
167
167
  @spec_helper_path = File.join @spec_path, 'card', 'spec', 'spec_helper'
168
168
  empty_directory 'spec'
169
+
170
+ @cardio_gem_root = File.join @gem_path, 'card'
171
+ @wagn_gem_root = File.join @gem_path, 'wagn'
169
172
  inside 'spec' do
170
- copy_file File.join('javascripts', 'support', 'wagn_jasmine.yml'),
173
+ template File.join('javascripts', 'support', 'wagn_jasmine.yml'),
171
174
  File.join('javascripts', 'support', 'jasmine.yml')
172
175
  end
173
176
 
@@ -184,7 +187,7 @@ class WagnGenerator < Rails::Generators::AppBase
184
187
  empty_directory 'spec'
185
188
  inside 'spec' do
186
189
  template 'spec_helper.rb'
187
- copy_file File.join('javascripts', 'support', 'deck_jasmine.yml'),
190
+ template File.join('javascripts', 'support', 'deck_jasmine.yml'),
188
191
  File.join('javascripts', 'support', 'jasmine.yml')
189
192
  end
190
193
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wagn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.4
4
+ version: 1.18.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan McCutchen
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-04-08 00:00:00.000000000 Z
14
+ date: 2016-05-07 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
@@ -33,14 +33,14 @@ dependencies:
33
33
  requirements:
34
34
  - - '='
35
35
  - !ruby/object:Gem::Version
36
- version: 1.18.4
36
+ version: 1.18.5
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
41
  - - '='
42
42
  - !ruby/object:Gem::Version
43
- version: 1.18.4
43
+ version: 1.18.5
44
44
  description: a wiki approach to stuctured data, dynamic interaction, and web design
45
45
  email:
46
46
  - info@wagn.org
@@ -723,7 +723,7 @@ files:
723
723
  - spec/controllers/location_spec.rb
724
724
  - spec/javascripts/helpers/.gitkeep
725
725
  - spec/javascripts/helpers/jasmine-jquery.js
726
- - spec/javascripts/support/jasmine.yml
726
+ - spec/javascripts/support/jasmine.yml.erb
727
727
  - spec/javascripts/support/jasmine_config.rb
728
728
  - spec/javascripts/support/jasmine_runner.rb
729
729
  - spec/javascripts/wagn_spec.coffee
@@ -798,7 +798,7 @@ test_files:
798
798
  - spec/controllers/location_spec.rb
799
799
  - spec/javascripts/helpers/.gitkeep
800
800
  - spec/javascripts/helpers/jasmine-jquery.js
801
- - spec/javascripts/support/jasmine.yml
801
+ - spec/javascripts/support/jasmine.yml.erb
802
802
  - spec/javascripts/support/jasmine_config.rb
803
803
  - spec/javascripts/support/jasmine_runner.rb
804
804
  - spec/javascripts/wagn_spec.coffee
@@ -810,3 +810,4 @@ test_files:
810
810
  - test/script/run_engine_deck.sh
811
811
  - test/script/run_mig.sh
812
812
  - test/test_helper.rb
813
+ has_rdoc: