confluence 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
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.1.1"
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-18"
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",
@@ -52,10 +52,11 @@ pkg
52
52
  node_modules
53
53
 
54
54
  # for jamjs
55
- jam
55
+ components
56
56
 
57
57
  # for haskell
58
58
  dist
59
59
 
60
60
  # For integration testing logs
61
- log
61
+ log
62
+ *.log
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<%= project_name %>",
3
+ "version": "0.0.1",
4
+ "description": "WRITE ME"
5
+ }
@@ -4,10 +4,11 @@
4
4
  "description": "WRITE ME",
5
5
  "dependencies": {
6
6
  "jamjs":"0.2.x" ,
7
+ "bower":"0.7.x" ,
7
8
  "coffee-script":"1.4.x"
8
9
  },
9
10
  "jam": {
10
- "packageDir": "assets/javascripts",
11
+ "packageDir": "components",
11
12
  "dependencies": {
12
13
  "jquery": "1.9.x"
13
14
  }
@@ -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
- # require "sprockets/railtie"
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.1.1
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-18 00:00:00.000000000 Z
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: 1243186819851039794
242
+ hash: 1833576747292622181
252
243
  required_rubygems_version: !ruby/object:Gem::Requirement
253
244
  none: false
254
245
  requirements:
@@ -1,4 +0,0 @@
1
- -- Haskell-fay based javascript source code
2
-
3
- main :: IO ()
4
- main = putStrLn "WRITE ME!"
@@ -1,3 +0,0 @@
1
- .<%= project_name.dasherize %>-box {
2
- font-size: 20px;
3
- }
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,4 +0,0 @@
1
- /*
2
- Place all the styles related to the matching controller here.
3
- They will automatically be included in application.css.
4
- */
@@ -1,2 +0,0 @@
1
- module ApplicationHelper
2
- end
@@ -1,2 +0,0 @@
1
- module HtmlHelper
2
- end
@@ -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)