confluence 0.0.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.
Files changed (84) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/Gemfile +29 -0
  4. data/Gemfile.lock +56 -0
  5. data/LICENSE.txt +20 -0
  6. data/README.rdoc +19 -0
  7. data/Rakefile +45 -0
  8. data/VERSION +1 -0
  9. data/bin/confluence +5 -0
  10. data/lib/confluence.rb +25 -0
  11. data/lib/confluence/navigator.rb +67 -0
  12. data/lib/confluence/templates/%project_name%.cabal.tt +64 -0
  13. data/lib/confluence/templates/.document +5 -0
  14. data/lib/confluence/templates/.gitignore +61 -0
  15. data/lib/confluence/templates/.rspec +1 -0
  16. data/lib/confluence/templates/Gemfile.tt +20 -0
  17. data/lib/confluence/templates/LICENSE.txt.tt +20 -0
  18. data/lib/confluence/templates/Makefile.tt +15 -0
  19. data/lib/confluence/templates/README.markdown.tt +32 -0
  20. data/lib/confluence/templates/Rakefile.tt +36 -0
  21. data/lib/confluence/templates/Setup.hs.tt +1 -0
  22. data/lib/confluence/templates/TODO.markdown.tt +4 -0
  23. data/lib/confluence/templates/assets/html/_%project_name%.html.haml.tt +5 -0
  24. data/lib/confluence/templates/assets/images/README.markdown.tt +11 -0
  25. data/lib/confluence/templates/assets/javascripts/README.markdown.tt +1 -0
  26. data/lib/confluence/templates/assets/stylesheets/README.markdown.tt +1 -0
  27. data/lib/confluence/templates/lib/%project_name%.rb.tt +3 -0
  28. data/lib/confluence/templates/package.json.tt +15 -0
  29. data/lib/confluence/templates/spec/%project_name%_spec.rb.tt +7 -0
  30. data/lib/confluence/templates/spec/spec_helper.rb.tt +5 -0
  31. data/lib/confluence/templates/src/images/README.markdown.tt +11 -0
  32. data/lib/confluence/templates/src/javascripts/%project_name%.hs.tt +4 -0
  33. data/lib/confluence/templates/src/stylesheets/%project_name%.scss.tt +3 -0
  34. data/lib/confluence/templates/test/integration/.gitignore +15 -0
  35. data/lib/confluence/templates/test/integration/Gemfile +26 -0
  36. data/lib/confluence/templates/test/integration/Gemfile.lock +88 -0
  37. data/lib/confluence/templates/test/integration/README.rdoc +261 -0
  38. data/lib/confluence/templates/test/integration/Rakefile +7 -0
  39. data/lib/confluence/templates/test/integration/app/assets/images/rails.png +0 -0
  40. data/lib/confluence/templates/test/integration/app/assets/javascripts/application.js +13 -0
  41. data/lib/confluence/templates/test/integration/app/assets/javascripts/pages.js +2 -0
  42. data/lib/confluence/templates/test/integration/app/assets/stylesheets/application.css +13 -0
  43. data/lib/confluence/templates/test/integration/app/assets/stylesheets/pages.css +4 -0
  44. data/lib/confluence/templates/test/integration/app/controllers/application_controller.rb +3 -0
  45. data/lib/confluence/templates/test/integration/app/controllers/pages_controller.rb +35 -0
  46. data/lib/confluence/templates/test/integration/app/helpers/application_helper.rb +2 -0
  47. data/lib/confluence/templates/test/integration/app/helpers/pages_helper.rb +2 -0
  48. data/lib/confluence/templates/test/integration/app/mailers/.gitkeep +0 -0
  49. data/lib/confluence/templates/test/integration/app/models/.gitkeep +0 -0
  50. data/lib/confluence/templates/test/integration/app/views/layouts/application.html.erb +14 -0
  51. data/lib/confluence/templates/test/integration/app/views/pages/index.html.haml +1 -0
  52. data/lib/confluence/templates/test/integration/config.ru +4 -0
  53. data/lib/confluence/templates/test/integration/config/application.rb +63 -0
  54. data/lib/confluence/templates/test/integration/config/boot.rb +6 -0
  55. data/lib/confluence/templates/test/integration/config/environment.rb +5 -0
  56. data/lib/confluence/templates/test/integration/config/environments/development.rb +26 -0
  57. data/lib/confluence/templates/test/integration/config/environments/production.rb +51 -0
  58. data/lib/confluence/templates/test/integration/config/environments/test.rb +35 -0
  59. data/lib/confluence/templates/test/integration/config/initializers/backtrace_silencers.rb +7 -0
  60. data/lib/confluence/templates/test/integration/config/initializers/inflections.rb +15 -0
  61. data/lib/confluence/templates/test/integration/config/initializers/mime_types.rb +5 -0
  62. data/lib/confluence/templates/test/integration/config/initializers/secret_token.rb +7 -0
  63. data/lib/confluence/templates/test/integration/config/initializers/session_store.rb +8 -0
  64. data/lib/confluence/templates/test/integration/config/initializers/wrap_parameters.rb +10 -0
  65. data/lib/confluence/templates/test/integration/config/locales/en.yml +5 -0
  66. data/lib/confluence/templates/test/integration/config/routes.rb +60 -0
  67. data/lib/confluence/templates/test/integration/db/seeds.rb +7 -0
  68. data/lib/confluence/templates/test/integration/lib/assets/.gitkeep +0 -0
  69. data/lib/confluence/templates/test/integration/lib/tasks/.gitkeep +0 -0
  70. data/lib/confluence/templates/test/integration/public/404.html +26 -0
  71. data/lib/confluence/templates/test/integration/public/422.html +26 -0
  72. data/lib/confluence/templates/test/integration/public/500.html +25 -0
  73. data/lib/confluence/templates/test/integration/public/favicon.ico +0 -0
  74. data/lib/confluence/templates/test/integration/public/robots.txt +5 -0
  75. data/lib/confluence/templates/test/integration/script/rails +6 -0
  76. data/lib/confluence/templates/test/integration/vendor/assets/javascripts/.gitkeep +0 -0
  77. data/lib/confluence/templates/test/integration/vendor/assets/stylesheets/.gitkeep +0 -0
  78. data/lib/confluence/templates/test/integration/vendor/plugins/.gitkeep +0 -0
  79. data/lib/confluence/templates/test/javascripts/README.markdown.tt +1 -0
  80. data/spec/confluence/navigator_spec.rb +68 -0
  81. data/spec/confluence_spec.rb +31 -0
  82. data/spec/spec_helper.rb +15 -0
  83. data/spec/support/file_sytem/navigator.rb +9 -0
  84. metadata +249 -0
@@ -0,0 +1,7 @@
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)
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-Agent: *
5
+ # Disallow: /
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1 @@
1
+ <%= project_name %> post-build javascript
@@ -0,0 +1,68 @@
1
+ require 'spec_helper'
2
+
3
+ describe Confluence::Navigator do
4
+
5
+ describe Confluence::Navigator::Node do
6
+
7
+ context "class method" do
8
+
9
+ describe "#from_filepath" do
10
+ let(:node) { Confluence::Navigator::Node.from_filepath RSpec.root }
11
+
12
+ it "should give me a node" do
13
+ node.should be_a Confluence::Navigator::Node
14
+ end
15
+
16
+ describe "#directory?" do
17
+ specify { node.should be_directory }
18
+ end
19
+
20
+ describe "#expand_path" do
21
+ it "should contain all the junk in the spec file path" do
22
+ node.expand_path.map(&:filepath).sort.should eq ["confluence", "confluence_spec.rb", "spec_helper.rb", "support"].map { |entry| File.join(RSpec.root, entry)}
23
+ end
24
+
25
+ end
26
+
27
+ end
28
+ end
29
+ end
30
+
31
+ describe "api" do
32
+ let(:nav) { Confluence::Navigator.new RSpec.root }
33
+
34
+ describe "#on_encounter" do
35
+ it "should complain if no block is give" do
36
+ expect { nav.on_encounter }.to throw_symbol :NoBlockGivenError
37
+ end
38
+
39
+ it "should complain if a bad type is given" do
40
+ expect { nav.on_encounter(:dog) { } }.to throw_symbol :BadTypeError
41
+ end
42
+
43
+ end
44
+ end
45
+
46
+ describe "usage" do
47
+ let(:nav) { Confluence::Navigator.new RSpec.root }
48
+ before :each do
49
+ push_bfs = lambda { |a| (@bfs_results ||= []) << a }
50
+ nav.on_encounter do |filepath|
51
+ push_bfs.call filepath
52
+ end
53
+ nav.run
54
+ end
55
+
56
+ describe "#run" do
57
+ it "a successful should spit out all the files in this very spec folder" do
58
+ @bfs_results.should_not be_empty
59
+ end
60
+ ["spec_helper.rb", "confluence_spec.rb"].each do |file|
61
+ it "should at least contain the basic #{file} file" do
62
+ @bfs_results.should include File.join(RSpec.root, file)
63
+ end
64
+ end
65
+ end
66
+ end
67
+
68
+ end
@@ -0,0 +1,31 @@
1
+ require 'spec_helper'
2
+
3
+ describe Confluence do
4
+
5
+ describe Confluence::Application do
6
+
7
+ context "class" do
8
+ let(:api) { Confluence::Application }
9
+ describe "#source_root" do
10
+ it "should should point to an existing folder" do
11
+ api.source_root.should =~ /confluence\/lib\/confluence\/templates$/
12
+ File.exists?(api.source_root).should be_true
13
+ File.directory?(api.source_root).should be_true
14
+ end
15
+ end
16
+ end
17
+
18
+ context "instance" do
19
+ let(:app) { Confluence::Application.start ["new", "assfag"] }
20
+
21
+ describe "#new" do
22
+ it "should create the application that I demand it to" do
23
+ app
24
+ fail "Until this becomes an automated process, YOU need to go and delete the test folder yourself"
25
+ end
26
+ end
27
+ end
28
+
29
+ end
30
+
31
+ end
@@ -0,0 +1,15 @@
1
+ require "simplecov"
2
+ SimpleCov.start
3
+
4
+ require 'rspec'
5
+ Dir[File.expand_path("../lib/*.rb", File.dirname(__FILE__))].each { |source| require source }
6
+ Dir[File.join(File.dirname(__FILE__), "support", "**", "*.rb")].each { |help| require help }
7
+
8
+ RSpec.configure {|c| c.fail_fast = true}
9
+ RSpec.instance_exec do
10
+ RSPEC_ROOT = File.expand_path(".", File.dirname(__FILE__))
11
+ def self.root
12
+ RSPEC_ROOT
13
+ end
14
+ end
15
+
@@ -0,0 +1,9 @@
1
+ module Navigator
2
+ def self.setup( path )
3
+
4
+ end
5
+
6
+ def self.cleanup( path )
7
+ Dir.unlink File.join(RSpec.root, path)
8
+ end
9
+ end
metadata ADDED
@@ -0,0 +1,249 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: confluence
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Thomas Chen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: bundler
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: rdoc
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: simplecov
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rspec
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: thor
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: jeweler
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 1.8.4
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: 1.8.4
126
+ description: confluence is the merging of rivers. In particular, it is the merging
127
+ of the fay-haskell-coffee-js river with the scss-css river with the psd-png river
128
+ into the rails-ruby-haml rivers
129
+ email: foxnewsnetwork@gmail.com
130
+ executables:
131
+ - confluence
132
+ extensions: []
133
+ extra_rdoc_files:
134
+ - LICENSE.txt
135
+ - README.rdoc
136
+ files:
137
+ - .document
138
+ - .rspec
139
+ - Gemfile
140
+ - Gemfile.lock
141
+ - LICENSE.txt
142
+ - README.rdoc
143
+ - Rakefile
144
+ - VERSION
145
+ - bin/confluence
146
+ - lib/confluence.rb
147
+ - lib/confluence/navigator.rb
148
+ - lib/confluence/templates/%project_name%.cabal.tt
149
+ - lib/confluence/templates/.document
150
+ - lib/confluence/templates/.gitignore
151
+ - lib/confluence/templates/.rspec
152
+ - lib/confluence/templates/Gemfile.tt
153
+ - lib/confluence/templates/LICENSE.txt.tt
154
+ - lib/confluence/templates/Makefile.tt
155
+ - lib/confluence/templates/README.markdown.tt
156
+ - lib/confluence/templates/Rakefile.tt
157
+ - lib/confluence/templates/Setup.hs.tt
158
+ - lib/confluence/templates/TODO.markdown.tt
159
+ - lib/confluence/templates/assets/html/_%project_name%.html.haml.tt
160
+ - lib/confluence/templates/assets/images/README.markdown.tt
161
+ - lib/confluence/templates/assets/javascripts/README.markdown.tt
162
+ - lib/confluence/templates/assets/stylesheets/README.markdown.tt
163
+ - lib/confluence/templates/lib/%project_name%.rb.tt
164
+ - lib/confluence/templates/package.json.tt
165
+ - lib/confluence/templates/spec/%project_name%_spec.rb.tt
166
+ - lib/confluence/templates/spec/spec_helper.rb.tt
167
+ - lib/confluence/templates/src/images/README.markdown.tt
168
+ - lib/confluence/templates/src/javascripts/%project_name%.hs.tt
169
+ - lib/confluence/templates/src/stylesheets/%project_name%.scss.tt
170
+ - lib/confluence/templates/test/integration/.gitignore
171
+ - lib/confluence/templates/test/integration/Gemfile
172
+ - lib/confluence/templates/test/integration/Gemfile.lock
173
+ - lib/confluence/templates/test/integration/README.rdoc
174
+ - lib/confluence/templates/test/integration/Rakefile
175
+ - lib/confluence/templates/test/integration/app/assets/images/rails.png
176
+ - lib/confluence/templates/test/integration/app/assets/javascripts/application.js
177
+ - lib/confluence/templates/test/integration/app/assets/javascripts/pages.js
178
+ - lib/confluence/templates/test/integration/app/assets/stylesheets/application.css
179
+ - lib/confluence/templates/test/integration/app/assets/stylesheets/pages.css
180
+ - lib/confluence/templates/test/integration/app/controllers/application_controller.rb
181
+ - lib/confluence/templates/test/integration/app/controllers/pages_controller.rb
182
+ - lib/confluence/templates/test/integration/app/helpers/application_helper.rb
183
+ - lib/confluence/templates/test/integration/app/helpers/pages_helper.rb
184
+ - lib/confluence/templates/test/integration/app/mailers/.gitkeep
185
+ - lib/confluence/templates/test/integration/app/models/.gitkeep
186
+ - lib/confluence/templates/test/integration/app/views/layouts/application.html.erb
187
+ - lib/confluence/templates/test/integration/app/views/pages/index.html.haml
188
+ - lib/confluence/templates/test/integration/config.ru
189
+ - lib/confluence/templates/test/integration/config/application.rb
190
+ - lib/confluence/templates/test/integration/config/boot.rb
191
+ - lib/confluence/templates/test/integration/config/environment.rb
192
+ - lib/confluence/templates/test/integration/config/environments/development.rb
193
+ - lib/confluence/templates/test/integration/config/environments/production.rb
194
+ - lib/confluence/templates/test/integration/config/environments/test.rb
195
+ - lib/confluence/templates/test/integration/config/initializers/backtrace_silencers.rb
196
+ - lib/confluence/templates/test/integration/config/initializers/inflections.rb
197
+ - lib/confluence/templates/test/integration/config/initializers/mime_types.rb
198
+ - lib/confluence/templates/test/integration/config/initializers/secret_token.rb
199
+ - lib/confluence/templates/test/integration/config/initializers/session_store.rb
200
+ - lib/confluence/templates/test/integration/config/initializers/wrap_parameters.rb
201
+ - lib/confluence/templates/test/integration/config/locales/en.yml
202
+ - lib/confluence/templates/test/integration/config/routes.rb
203
+ - lib/confluence/templates/test/integration/db/seeds.rb
204
+ - lib/confluence/templates/test/integration/lib/assets/.gitkeep
205
+ - lib/confluence/templates/test/integration/lib/tasks/.gitkeep
206
+ - lib/confluence/templates/test/integration/public/404.html
207
+ - lib/confluence/templates/test/integration/public/422.html
208
+ - lib/confluence/templates/test/integration/public/500.html
209
+ - lib/confluence/templates/test/integration/public/favicon.ico
210
+ - lib/confluence/templates/test/integration/public/robots.txt
211
+ - lib/confluence/templates/test/integration/script/rails
212
+ - lib/confluence/templates/test/integration/vendor/assets/javascripts/.gitkeep
213
+ - lib/confluence/templates/test/integration/vendor/assets/stylesheets/.gitkeep
214
+ - lib/confluence/templates/test/integration/vendor/plugins/.gitkeep
215
+ - lib/confluence/templates/test/javascripts/README.markdown.tt
216
+ - spec/confluence/navigator_spec.rb
217
+ - spec/confluence_spec.rb
218
+ - spec/spec_helper.rb
219
+ - spec/support/file_sytem/navigator.rb
220
+ homepage: http://github.com/foxnewsnetwork/confluence
221
+ licenses:
222
+ - MIT
223
+ post_install_message:
224
+ rdoc_options: []
225
+ require_paths:
226
+ - lib
227
+ required_ruby_version: !ruby/object:Gem::Requirement
228
+ none: false
229
+ requirements:
230
+ - - ! '>='
231
+ - !ruby/object:Gem::Version
232
+ version: '0'
233
+ segments:
234
+ - 0
235
+ hash: -1497494143789213432
236
+ required_rubygems_version: !ruby/object:Gem::Requirement
237
+ none: false
238
+ requirements:
239
+ - - ! '>='
240
+ - !ruby/object:Gem::Version
241
+ version: '0'
242
+ requirements: []
243
+ rubyforge_project:
244
+ rubygems_version: 1.8.24
245
+ signing_key:
246
+ specification_version: 3
247
+ summary: A sloppy blobulization of jeweler with things like integration testing, javascript
248
+ compiling, etc. that seeks to provide a framework for writing modular web assets
249
+ test_files: []