confluence 0.1.1 → 0.2.0
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.
- data/VERSION +1 -1
- data/confluence.gemspec +5 -14
- data/lib/confluence/templates/.gitignore +3 -2
- data/lib/confluence/templates/{test/integration/app/assets → assets}/javascripts/application.js +0 -0
- data/lib/confluence/templates/{test/integration/app/assets → assets}/stylesheets/application.css +0 -0
- data/lib/confluence/templates/component.json.tt +5 -0
- data/lib/confluence/templates/package.json.tt +2 -1
- data/lib/confluence/templates/test/integration/config/application.rb +12 -1
- metadata +6 -15
- data/lib/confluence/templates/src/javascripts/%project_name%.hs.tt +0 -4
- data/lib/confluence/templates/src/stylesheets/%project_name%.scss.tt +0 -3
- data/lib/confluence/templates/test/integration/app/assets/images/rails.png +0 -0
- data/lib/confluence/templates/test/integration/app/assets/javascripts/pages.js +0 -2
- data/lib/confluence/templates/test/integration/app/assets/stylesheets/pages.css +0 -4
- data/lib/confluence/templates/test/integration/app/helpers/application_helper.rb +0 -2
- data/lib/confluence/templates/test/integration/app/helpers/html_helper.rb.tt +0 -2
- data/lib/confluence/templates/test/integration/app/mailers/.gitkeep +0 -0
- data/lib/confluence/templates/test/integration/app/models/.gitkeep +0 -0
- data/lib/confluence/templates/test/integration/db/seeds.rb +0 -7
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.2.0
|
data/confluence.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "confluence"
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.2.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Thomas Chen"]
|
|
12
|
-
s.date = "2013-02-
|
|
12
|
+
s.date = "2013-02-19"
|
|
13
13
|
s.description = "confluence is the merging of rivers. In particular, it is the merging of the fay-haskell-coffee-js river with the scss-css river with the psd-png river into the rails-ruby-haml rivers"
|
|
14
14
|
s.email = "foxnewsnetwork@gmail.com"
|
|
15
15
|
s.executables = ["confluence"]
|
|
@@ -44,7 +44,10 @@ Gem::Specification.new do |s|
|
|
|
44
44
|
"lib/confluence/templates/assets/html/_%project_name%.html.haml.tt",
|
|
45
45
|
"lib/confluence/templates/assets/images/README.markdown.tt",
|
|
46
46
|
"lib/confluence/templates/assets/javascripts/README.markdown.tt",
|
|
47
|
+
"lib/confluence/templates/assets/javascripts/application.js",
|
|
47
48
|
"lib/confluence/templates/assets/stylesheets/README.markdown.tt",
|
|
49
|
+
"lib/confluence/templates/assets/stylesheets/application.css",
|
|
50
|
+
"lib/confluence/templates/component.json.tt",
|
|
48
51
|
"lib/confluence/templates/config.ru",
|
|
49
52
|
"lib/confluence/templates/lib/%project_name%.rb.tt",
|
|
50
53
|
"lib/confluence/templates/lib/%project_name%/presenter.rb.tt",
|
|
@@ -52,22 +55,11 @@ Gem::Specification.new do |s|
|
|
|
52
55
|
"lib/confluence/templates/spec/%project_name%_spec.rb.tt",
|
|
53
56
|
"lib/confluence/templates/spec/spec_helper.rb.tt",
|
|
54
57
|
"lib/confluence/templates/src/images/README.markdown.tt",
|
|
55
|
-
"lib/confluence/templates/src/javascripts/%project_name%.hs.tt",
|
|
56
|
-
"lib/confluence/templates/src/stylesheets/%project_name%.scss.tt",
|
|
57
58
|
"lib/confluence/templates/test/integration/.gitignore",
|
|
58
59
|
"lib/confluence/templates/test/integration/README.rdoc",
|
|
59
60
|
"lib/confluence/templates/test/integration/Rakefile",
|
|
60
|
-
"lib/confluence/templates/test/integration/app/assets/images/rails.png",
|
|
61
|
-
"lib/confluence/templates/test/integration/app/assets/javascripts/application.js",
|
|
62
|
-
"lib/confluence/templates/test/integration/app/assets/javascripts/pages.js",
|
|
63
|
-
"lib/confluence/templates/test/integration/app/assets/stylesheets/application.css",
|
|
64
|
-
"lib/confluence/templates/test/integration/app/assets/stylesheets/pages.css",
|
|
65
61
|
"lib/confluence/templates/test/integration/app/controllers/application_controller.rb",
|
|
66
62
|
"lib/confluence/templates/test/integration/app/controllers/html_controller.rb.tt",
|
|
67
|
-
"lib/confluence/templates/test/integration/app/helpers/application_helper.rb",
|
|
68
|
-
"lib/confluence/templates/test/integration/app/helpers/html_helper.rb.tt",
|
|
69
|
-
"lib/confluence/templates/test/integration/app/mailers/.gitkeep",
|
|
70
|
-
"lib/confluence/templates/test/integration/app/models/.gitkeep",
|
|
71
63
|
"lib/confluence/templates/test/integration/app/views/html/index.html.haml.tt",
|
|
72
64
|
"lib/confluence/templates/test/integration/app/views/layouts/application.html.erb",
|
|
73
65
|
"lib/confluence/templates/test/integration/config/application.rb",
|
|
@@ -84,7 +76,6 @@ Gem::Specification.new do |s|
|
|
|
84
76
|
"lib/confluence/templates/test/integration/config/initializers/wrap_parameters.rb",
|
|
85
77
|
"lib/confluence/templates/test/integration/config/locales/en.yml",
|
|
86
78
|
"lib/confluence/templates/test/integration/config/routes.rb.tt",
|
|
87
|
-
"lib/confluence/templates/test/integration/db/seeds.rb",
|
|
88
79
|
"lib/confluence/templates/test/integration/lib/assets/.gitkeep",
|
|
89
80
|
"lib/confluence/templates/test/integration/lib/tasks/.gitkeep",
|
|
90
81
|
"lib/confluence/templates/test/integration/public/404.html",
|
data/lib/confluence/templates/{test/integration/app/assets → assets}/javascripts/application.js
RENAMED
|
File without changes
|
data/lib/confluence/templates/{test/integration/app/assets → assets}/stylesheets/application.css
RENAMED
|
File without changes
|
|
@@ -5,7 +5,7 @@ require File.expand_path('../boot', __FILE__)
|
|
|
5
5
|
require "action_controller/railtie"
|
|
6
6
|
require "action_mailer/railtie"
|
|
7
7
|
require "active_resource/railtie"
|
|
8
|
-
|
|
8
|
+
require "sprockets/railtie"
|
|
9
9
|
# require "rails/test_unit/railtie"
|
|
10
10
|
|
|
11
11
|
if defined?(Bundler)
|
|
@@ -59,5 +59,16 @@ module Integration
|
|
|
59
59
|
# parameters by using an attr_accessible or attr_protected declaration.
|
|
60
60
|
# config.active_record.whitelist_attributes = true
|
|
61
61
|
|
|
62
|
+
# Enable the asset pipeline
|
|
63
|
+
config.assets.enabled = true
|
|
64
|
+
|
|
65
|
+
# Version of your assets, change this if you want to expire all your assets
|
|
66
|
+
config.assets.version = '1.0'
|
|
67
|
+
|
|
68
|
+
# Define where the assets live
|
|
69
|
+
config.assets.paths.unshift File.expand_path( "../../../components", File.dirname(__FILE__))
|
|
70
|
+
config.assets.paths.unshift File.expand_path( "../../../assets/stylesheets", File.dirname(__FILE__))
|
|
71
|
+
config.assets.paths.unshift File.expand_path( "../../../assets/javascripts", File.dirname(__FILE__))
|
|
72
|
+
|
|
62
73
|
end
|
|
63
74
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: confluence
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
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: 2013-02-
|
|
12
|
+
date: 2013-02-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -176,7 +176,10 @@ files:
|
|
|
176
176
|
- lib/confluence/templates/assets/html/_%project_name%.html.haml.tt
|
|
177
177
|
- lib/confluence/templates/assets/images/README.markdown.tt
|
|
178
178
|
- lib/confluence/templates/assets/javascripts/README.markdown.tt
|
|
179
|
+
- lib/confluence/templates/assets/javascripts/application.js
|
|
179
180
|
- lib/confluence/templates/assets/stylesheets/README.markdown.tt
|
|
181
|
+
- lib/confluence/templates/assets/stylesheets/application.css
|
|
182
|
+
- lib/confluence/templates/component.json.tt
|
|
180
183
|
- lib/confluence/templates/config.ru
|
|
181
184
|
- lib/confluence/templates/lib/%project_name%.rb.tt
|
|
182
185
|
- lib/confluence/templates/lib/%project_name%/presenter.rb.tt
|
|
@@ -184,22 +187,11 @@ files:
|
|
|
184
187
|
- lib/confluence/templates/spec/%project_name%_spec.rb.tt
|
|
185
188
|
- lib/confluence/templates/spec/spec_helper.rb.tt
|
|
186
189
|
- lib/confluence/templates/src/images/README.markdown.tt
|
|
187
|
-
- lib/confluence/templates/src/javascripts/%project_name%.hs.tt
|
|
188
|
-
- lib/confluence/templates/src/stylesheets/%project_name%.scss.tt
|
|
189
190
|
- lib/confluence/templates/test/integration/.gitignore
|
|
190
191
|
- lib/confluence/templates/test/integration/README.rdoc
|
|
191
192
|
- lib/confluence/templates/test/integration/Rakefile
|
|
192
|
-
- lib/confluence/templates/test/integration/app/assets/images/rails.png
|
|
193
|
-
- lib/confluence/templates/test/integration/app/assets/javascripts/application.js
|
|
194
|
-
- lib/confluence/templates/test/integration/app/assets/javascripts/pages.js
|
|
195
|
-
- lib/confluence/templates/test/integration/app/assets/stylesheets/application.css
|
|
196
|
-
- lib/confluence/templates/test/integration/app/assets/stylesheets/pages.css
|
|
197
193
|
- lib/confluence/templates/test/integration/app/controllers/application_controller.rb
|
|
198
194
|
- lib/confluence/templates/test/integration/app/controllers/html_controller.rb.tt
|
|
199
|
-
- lib/confluence/templates/test/integration/app/helpers/application_helper.rb
|
|
200
|
-
- lib/confluence/templates/test/integration/app/helpers/html_helper.rb.tt
|
|
201
|
-
- lib/confluence/templates/test/integration/app/mailers/.gitkeep
|
|
202
|
-
- lib/confluence/templates/test/integration/app/models/.gitkeep
|
|
203
195
|
- lib/confluence/templates/test/integration/app/views/html/index.html.haml.tt
|
|
204
196
|
- lib/confluence/templates/test/integration/app/views/layouts/application.html.erb
|
|
205
197
|
- lib/confluence/templates/test/integration/config/application.rb
|
|
@@ -216,7 +208,6 @@ files:
|
|
|
216
208
|
- lib/confluence/templates/test/integration/config/initializers/wrap_parameters.rb
|
|
217
209
|
- lib/confluence/templates/test/integration/config/locales/en.yml
|
|
218
210
|
- lib/confluence/templates/test/integration/config/routes.rb.tt
|
|
219
|
-
- lib/confluence/templates/test/integration/db/seeds.rb
|
|
220
211
|
- lib/confluence/templates/test/integration/lib/assets/.gitkeep
|
|
221
212
|
- lib/confluence/templates/test/integration/lib/tasks/.gitkeep
|
|
222
213
|
- lib/confluence/templates/test/integration/public/404.html
|
|
@@ -248,7 +239,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
248
239
|
version: '0'
|
|
249
240
|
segments:
|
|
250
241
|
- 0
|
|
251
|
-
hash:
|
|
242
|
+
hash: 1833576747292622181
|
|
252
243
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
253
244
|
none: false
|
|
254
245
|
requirements:
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# This file should contain all the record creation needed to seed the database with its default values.
|
|
2
|
-
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
3
|
-
#
|
|
4
|
-
# Examples:
|
|
5
|
-
#
|
|
6
|
-
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
|
7
|
-
# Mayor.create(name: 'Emanuel', city: cities.first)
|