houston-roadmaps 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +4 -0
  3. data/Gemfile +24 -0
  4. data/Gemfile.lock +358 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +31 -0
  7. data/Rakefile +25 -0
  8. data/app/assets/images/houston/roadmaps/.gitkeep +0 -0
  9. data/app/assets/javascripts/houston/roadmaps/app.coffee +2 -0
  10. data/app/assets/javascripts/houston/roadmaps/application.js +14 -0
  11. data/app/assets/javascripts/houston/roadmaps/handlebars_helpers.coffee +22 -0
  12. data/app/assets/javascripts/houston/roadmaps/jquery_extensions.coffee +4 -0
  13. data/app/assets/javascripts/houston/roadmaps/models/goal.coffee +11 -0
  14. data/app/assets/javascripts/houston/roadmaps/models/milestone.coffee +124 -0
  15. data/app/assets/javascripts/houston/roadmaps/models/roadmap.coffee +16 -0
  16. data/app/assets/javascripts/houston/roadmaps/models/viewport.coffee +3 -0
  17. data/app/assets/javascripts/houston/roadmaps/resize_listener.js +67 -0
  18. data/app/assets/javascripts/houston/roadmaps/views/_gantt_chart.coffee +224 -0
  19. data/app/assets/javascripts/houston/roadmaps/views/_show_milestone_view.coffee +204 -0
  20. data/app/assets/javascripts/houston/roadmaps/views/edit_gantt_chart.coffee +405 -0
  21. data/app/assets/javascripts/houston/roadmaps/views/edit_milestone_view.coffee +97 -0
  22. data/app/assets/javascripts/houston/roadmaps/views/edit_roadmap_view.coffee +80 -0
  23. data/app/assets/javascripts/houston/roadmaps/views/gantt_thumbnail_view.coffee +173 -0
  24. data/app/assets/javascripts/houston/roadmaps/views/goal_view.coffee +18 -0
  25. data/app/assets/javascripts/houston/roadmaps/views/project_goals_view.coffee +30 -0
  26. data/app/assets/javascripts/houston/roadmaps/views/roadmap_history_view.coffee +67 -0
  27. data/app/assets/javascripts/houston/roadmaps/views/roadmap_view.coffee +12 -0
  28. data/app/assets/javascripts/houston/roadmaps/views/roadmaps_view.coffee +29 -0
  29. data/app/assets/stylesheets/houston/roadmaps/application.css +13 -0
  30. data/app/assets/stylesheets/houston/roadmaps/colors.scss.erb +41 -0
  31. data/app/assets/stylesheets/houston/roadmaps/goals.scss +20 -0
  32. data/app/assets/stylesheets/houston/roadmaps/milestone.scss +58 -0
  33. data/app/assets/stylesheets/houston/roadmaps/roadmap.scss +276 -0
  34. data/app/assets/stylesheets/houston/roadmaps/roadmap_history.scss +42 -0
  35. data/app/assets/stylesheets/houston/roadmaps/roadmaps.scss +89 -0
  36. data/app/assets/templates/houston/roadmaps/goals/edit.hbs +6 -0
  37. data/app/assets/templates/houston/roadmaps/goals/index.hbs +9 -0
  38. data/app/assets/templates/houston/roadmaps/goals/new.hbs +27 -0
  39. data/app/assets/templates/houston/roadmaps/goals/show.hbs +6 -0
  40. data/app/assets/templates/houston/roadmaps/milestone/edit.hbs +67 -0
  41. data/app/assets/templates/houston/roadmaps/milestone/show.hbs +53 -0
  42. data/app/assets/templates/houston/roadmaps/milestone/ticket.hbs +28 -0
  43. data/app/assets/templates/houston/roadmaps/roadmap/goal.hbs +6 -0
  44. data/app/assets/templates/houston/roadmaps/roadmap/history.hbs +22 -0
  45. data/app/assets/templates/houston/roadmaps/roadmap/show.hbs +12 -0
  46. data/app/assets/templates/houston/roadmaps/roadmaps/index.hbs +2 -0
  47. data/app/assets/templates/houston/roadmaps/roadmaps/show.hbs +11 -0
  48. data/app/controllers/houston/roadmaps/api/v1/roadmap_controller.rb +20 -0
  49. data/app/controllers/houston/roadmaps/dashboard_controller.rb +34 -0
  50. data/app/controllers/houston/roadmaps/milestones_controller.rb +118 -0
  51. data/app/controllers/houston/roadmaps/project_goals_controller.rb +24 -0
  52. data/app/controllers/houston/roadmaps/roadmap_milestones_controller.rb +36 -0
  53. data/app/controllers/houston/roadmaps/roadmaps_controller.rb +77 -0
  54. data/app/helpers/houston/roadmaps/application_helper.rb +4 -0
  55. data/app/models/roadmap.rb +9 -0
  56. data/app/models/roadmap_commit.rb +35 -0
  57. data/app/models/roadmap_milestone.rb +29 -0
  58. data/app/models/roadmap_milestone_version.rb +8 -0
  59. data/app/presenters/houston/roadmaps/milestone_api_presenter.rb +27 -0
  60. data/app/presenters/houston/roadmaps/milestone_presenter.rb +74 -0
  61. data/app/presenters/houston/roadmaps/roadmap_milestone_presenter.rb +70 -0
  62. data/app/presenters/houston/roadmaps/roadmap_presenter.rb +37 -0
  63. data/app/presenters/houston/roadmaps/ticket_presenter.rb +20 -0
  64. data/app/views/houston/roadmaps/dashboard/show.html.erb +42 -0
  65. data/app/views/houston/roadmaps/milestones/show.html.erb +40 -0
  66. data/app/views/houston/roadmaps/project_goals/index.html.erb +42 -0
  67. data/app/views/houston/roadmaps/roadmaps/_form.html.erb +29 -0
  68. data/app/views/houston/roadmaps/roadmaps/edit.html.erb +8 -0
  69. data/app/views/houston/roadmaps/roadmaps/history.html.erb +41 -0
  70. data/app/views/houston/roadmaps/roadmaps/index.html.erb +24 -0
  71. data/app/views/houston/roadmaps/roadmaps/new.html.erb +7 -0
  72. data/app/views/houston/roadmaps/roadmaps/show.html.erb +27 -0
  73. data/app/views/houston/roadmaps/roadmaps/show_editable.html.erb +35 -0
  74. data/app/views/layouts/houston/roadmaps/application.html.erb +10 -0
  75. data/app/views/layouts/houston/roadmaps/dashboard.html.erb +9 -0
  76. data/bin/rails +8 -0
  77. data/config/database.yml +13 -0
  78. data/config/initializers/add_navigation_renderer.rb +13 -0
  79. data/config/routes.rb +37 -0
  80. data/db/.keep +0 -0
  81. data/db/migrate/20140831210254_add_band_to_milestones.rb +5 -0
  82. data/db/migrate/20140907212311_add_end_date_to_milestones.rb +19 -0
  83. data/db/migrate/20140916230539_add_locked_to_milestone.rb +5 -0
  84. data/db/migrate/20140927154728_add_closed_ticket_count_to_milestones.rb +11 -0
  85. data/db/migrate/20140929024130_create_roadmap_commits.rb +29 -0
  86. data/db/migrate/20141012023628_add_user_id_to_milestone_versions.rb +11 -0
  87. data/db/migrate/20150102192805_add_lanes_to_milestones.rb +5 -0
  88. data/db/migrate/20150119155145_add_goal_and_feedback_query_to_milestones.rb +6 -0
  89. data/db/migrate/20150524203903_add_project_id_to_roadmap_commits.rb +17 -0
  90. data/db/migrate/20150603203744_add_timestamps_to_roadmap_commits.rb +20 -0
  91. data/db/migrate/20160206214746_rename_roadmap_feature_to_milestones.rb +25 -0
  92. data/db/migrate/20160207154530_create_roadmaps.rb +125 -0
  93. data/db/structure.sql +2557 -0
  94. data/houston-roadmaps.gemspec +29 -0
  95. data/lib/houston-roadmaps.rb +1 -0
  96. data/lib/houston/roadmaps.rb +15 -0
  97. data/lib/houston/roadmaps/configuration.rb +14 -0
  98. data/lib/houston/roadmaps/engine.rb +27 -0
  99. data/lib/houston/roadmaps/milestone_ext.rb +14 -0
  100. data/lib/houston/roadmaps/project_ext.rb +20 -0
  101. data/lib/houston/roadmaps/railtie.rb +17 -0
  102. data/lib/houston/roadmaps/version.rb +5 -0
  103. data/lib/tasks/roadmap_tasks.rake +4 -0
  104. data/test/acceptance/houston_dummy_test.rb +17 -0
  105. data/test/dummy/houston.rb +23 -0
  106. data/test/fixtures/projects.yml +3 -0
  107. data/test/fixtures/users.yml +10 -0
  108. data/test/test_helper.rb +43 -0
  109. data/test/unit/fixtures_test.rb +11 -0
  110. metadata +227 -0
@@ -0,0 +1,29 @@
1
+ $:.push File.expand_path("../lib", __FILE__)
2
+
3
+ # Maintain your gem's version:
4
+ require "houston/roadmaps/version"
5
+
6
+ # Describe your gem and declare its dependencies:
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "houston-roadmaps"
9
+ spec.version = Houston::Roadmaps::VERSION
10
+ spec.authors = ["Bob Lail"]
11
+ spec.email = ["bob.lailfamily@gmail.com"]
12
+
13
+ spec.summary = "A module for Houston to facilitate managing milestones"
14
+ spec.description = "A module for Houston to facilitate managing milestones"
15
+ spec.homepage = "https://github.com/houston/houston-roadmaps"
16
+
17
+ spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
18
+ spec.test_files = Dir["test/**/*"]
19
+
20
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ spec.require_paths = ["lib"]
22
+ spec.test_files = Dir["test/**/*"]
23
+
24
+ spec.add_dependency "neat-rails", ">= 0.2.0"
25
+ spec.add_dependency "houston-core", ">= 0.6.2"
26
+ spec.add_development_dependency "bundler", "~> 1.10.6"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "sqlite3"
29
+ end
@@ -0,0 +1 @@
1
+ require "houston/roadmaps"
@@ -0,0 +1,15 @@
1
+ require "houston/roadmaps/engine"
2
+ require "houston/roadmaps/configuration"
3
+
4
+ module Houston
5
+ module Roadmaps
6
+ extend self
7
+
8
+ def config(&block)
9
+ @configuration ||= Roadmaps::Configuration.new
10
+ @configuration.instance_eval(&block) if block_given?
11
+ @configuration
12
+ end
13
+
14
+ end
15
+ end
@@ -0,0 +1,14 @@
1
+ module Houston::Roadmaps
2
+ class Configuration
3
+ attr_reader :markers
4
+
5
+ def initialize
6
+ @markers = []
7
+ end
8
+
9
+ def date(date_string, description)
10
+ @markers.push(date: Date.parse(date_string), description: description)
11
+ end
12
+
13
+ end
14
+ end
@@ -0,0 +1,27 @@
1
+ require "houston/roadmaps/railtie"
2
+
3
+ module Houston
4
+ module Roadmaps
5
+ class Engine < ::Rails::Engine
6
+ isolate_namespace Houston::Roadmaps
7
+
8
+ # Precompile this modules assets
9
+ initializer :assets do |config|
10
+ Rails.application.config.assets.precompile += %w(
11
+ houston/roadmaps/application.js
12
+ houston/roadmaps/application.css )
13
+ end
14
+
15
+ # Include the Engine's migrations with the Application
16
+ # http://pivotallabs.com/leave-your-migrations-in-your-rails-engines/
17
+ initializer :append_migrations do |app|
18
+ unless app.root.to_s.match root.to_s
19
+ config.paths["db/migrate"].expanded.each do |expanded_path|
20
+ app.config.paths["db/migrate"] << expanded_path
21
+ end
22
+ end
23
+ end
24
+
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,14 @@
1
+ require "active_support/concern"
2
+
3
+ module Houston
4
+ module Roadmaps
5
+ module MilestoneExt
6
+ extend ActiveSupport::Concern
7
+
8
+ included do
9
+ has_and_belongs_to_many :roadmaps, join_table: "roadmap_milestones"
10
+ end
11
+
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ require "active_support/concern"
2
+
3
+ module Houston
4
+ module Roadmaps
5
+ module ProjectExt
6
+ extend ActiveSupport::Concern
7
+
8
+ included do
9
+ has_and_belongs_to_many :roadmaps
10
+ end
11
+
12
+ module ClassMethods
13
+ def goals
14
+ Milestone.where(project_id: unscope(:order, :select).select(:id))
15
+ end
16
+ end
17
+
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,17 @@
1
+ require "houston/roadmaps/milestone_ext"
2
+ require "houston/roadmaps/project_ext"
3
+
4
+ module Houston
5
+ module Roadmaps
6
+ class Railtie < ::Rails::Railtie
7
+
8
+ # The block you pass to this method will run for every request in
9
+ # development mode, but only once in production.
10
+ config.to_prepare do
11
+ ::Milestone.send(:include, Houston::Roadmaps::MilestoneExt)
12
+ ::Project.send(:include, Houston::Roadmaps::ProjectExt)
13
+ end
14
+
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ module Houston
2
+ module Roadmaps
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :roadmap do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,17 @@
1
+ require "test_helper"
2
+
3
+ class DummyHoustonTest < ActionDispatch::IntegrationTest
4
+
5
+ context "The Test Suite" do
6
+ should "be able to interact with a dummy instance of Houston" do
7
+ visit "/users/sign_in"
8
+ fill_in "user_email", with: "admin@example.com"
9
+ fill_in "user_password", with: "password"
10
+ click_button "Sign in"
11
+
12
+ assert page.has_content?("Projects I Follow"),
13
+ "Expected to have been able to log in and to see the Timeline view"
14
+ end
15
+ end
16
+
17
+ end
@@ -0,0 +1,23 @@
1
+ # Load Houston
2
+ require "houston/application"
3
+
4
+ # Configure Houston
5
+ Houston.config do
6
+
7
+ # Houston should load config/database.yml from this module
8
+ # rather than from Houston Core.
9
+ root Pathname.new File.expand_path("../../..", __FILE__)
10
+
11
+ # Give dummy values to these required fields.
12
+ host "houston.test.com"
13
+ mailer_sender "houston@test.com"
14
+
15
+ # Houston still hard-codes knowledge of these Roles.
16
+ # This will eventually be refactored away.
17
+ roles "Developer", "Tester"
18
+ project_roles "Maintainer"
19
+
20
+ # Mount this module on the dummy Houston application.
21
+ use :roadmaps
22
+
23
+ end
@@ -0,0 +1,3 @@
1
+ test:
2
+ name: Test
3
+ slug: test
@@ -0,0 +1,10 @@
1
+ admin:
2
+ first_name: FirstName
3
+ last_name: LastName
4
+ email: admin@example.com
5
+ email_addresses:
6
+ - admin@example.com
7
+ administrator: true
8
+ role: Developer
9
+ encrypted_password: $2a$10$Pf9Q94yN7t/YGqGS6pBl5uOL8lUvqgWpGeXRMHGbgPU0ixbWzthOG
10
+ # password: password
@@ -0,0 +1,43 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ # Load Houston
5
+ require "dummy/houston"
6
+ Rails.application.initialize! unless Rails.application.initialized?
7
+
8
+ require "rails/test_help"
9
+
10
+ if ENV["CI"] == "true"
11
+ require "minitest/reporters"
12
+ MiniTest::Reporters.use! [MiniTest::Reporters::DefaultReporter.new,
13
+ MiniTest::Reporters::JUnitReporter.new]
14
+ else
15
+ require "minitest/reporters/turn_reporter"
16
+ MiniTest::Reporters.use! Minitest::Reporters::TurnReporter.new
17
+ end
18
+
19
+ # Filter out Minitest backtrace while allowing backtrace
20
+ # from other libraries to be shown.
21
+ Minitest.backtrace_filter = Minitest::BacktraceFilter.new
22
+
23
+ class ActiveSupport::TestCase
24
+
25
+ # Load fixtures from the engine
26
+ self.fixture_path = File.expand_path("../fixtures", __FILE__)
27
+
28
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
29
+ fixtures :all
30
+
31
+ # Add more helper methods to be used by all tests here...
32
+
33
+ end
34
+
35
+ require "capybara/rails"
36
+
37
+ class ActionDispatch::IntegrationTest
38
+ include Capybara::DSL
39
+
40
+ # Load fixtures from the engine
41
+ self.fixture_path = File.expand_path("../fixtures", __FILE__)
42
+
43
+ end
@@ -0,0 +1,11 @@
1
+ require "test_helper"
2
+
3
+ class FixturesTest < ActiveSupport::TestCase
4
+
5
+ context "The Test Suite" do
6
+ should "load the fixtures defined in this engine" do
7
+ assert Project["test"], "Expected to find the 'test' project"
8
+ end
9
+ end
10
+
11
+ end
metadata ADDED
@@ -0,0 +1,227 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: houston-roadmaps
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Bob Lail
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-02-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: neat-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: houston-core
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.6.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.10.6
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.10.6
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: A module for Houston to facilitate managing milestones
84
+ email:
85
+ - bob.lailfamily@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - Gemfile.lock
93
+ - MIT-LICENSE
94
+ - README.md
95
+ - Rakefile
96
+ - app/assets/images/houston/roadmaps/.gitkeep
97
+ - app/assets/javascripts/houston/roadmaps/app.coffee
98
+ - app/assets/javascripts/houston/roadmaps/application.js
99
+ - app/assets/javascripts/houston/roadmaps/handlebars_helpers.coffee
100
+ - app/assets/javascripts/houston/roadmaps/jquery_extensions.coffee
101
+ - app/assets/javascripts/houston/roadmaps/models/goal.coffee
102
+ - app/assets/javascripts/houston/roadmaps/models/milestone.coffee
103
+ - app/assets/javascripts/houston/roadmaps/models/roadmap.coffee
104
+ - app/assets/javascripts/houston/roadmaps/models/viewport.coffee
105
+ - app/assets/javascripts/houston/roadmaps/resize_listener.js
106
+ - app/assets/javascripts/houston/roadmaps/views/_gantt_chart.coffee
107
+ - app/assets/javascripts/houston/roadmaps/views/_show_milestone_view.coffee
108
+ - app/assets/javascripts/houston/roadmaps/views/edit_gantt_chart.coffee
109
+ - app/assets/javascripts/houston/roadmaps/views/edit_milestone_view.coffee
110
+ - app/assets/javascripts/houston/roadmaps/views/edit_roadmap_view.coffee
111
+ - app/assets/javascripts/houston/roadmaps/views/gantt_thumbnail_view.coffee
112
+ - app/assets/javascripts/houston/roadmaps/views/goal_view.coffee
113
+ - app/assets/javascripts/houston/roadmaps/views/project_goals_view.coffee
114
+ - app/assets/javascripts/houston/roadmaps/views/roadmap_history_view.coffee
115
+ - app/assets/javascripts/houston/roadmaps/views/roadmap_view.coffee
116
+ - app/assets/javascripts/houston/roadmaps/views/roadmaps_view.coffee
117
+ - app/assets/stylesheets/houston/roadmaps/application.css
118
+ - app/assets/stylesheets/houston/roadmaps/colors.scss.erb
119
+ - app/assets/stylesheets/houston/roadmaps/goals.scss
120
+ - app/assets/stylesheets/houston/roadmaps/milestone.scss
121
+ - app/assets/stylesheets/houston/roadmaps/roadmap.scss
122
+ - app/assets/stylesheets/houston/roadmaps/roadmap_history.scss
123
+ - app/assets/stylesheets/houston/roadmaps/roadmaps.scss
124
+ - app/assets/templates/houston/roadmaps/goals/edit.hbs
125
+ - app/assets/templates/houston/roadmaps/goals/index.hbs
126
+ - app/assets/templates/houston/roadmaps/goals/new.hbs
127
+ - app/assets/templates/houston/roadmaps/goals/show.hbs
128
+ - app/assets/templates/houston/roadmaps/milestone/edit.hbs
129
+ - app/assets/templates/houston/roadmaps/milestone/show.hbs
130
+ - app/assets/templates/houston/roadmaps/milestone/ticket.hbs
131
+ - app/assets/templates/houston/roadmaps/roadmap/goal.hbs
132
+ - app/assets/templates/houston/roadmaps/roadmap/history.hbs
133
+ - app/assets/templates/houston/roadmaps/roadmap/show.hbs
134
+ - app/assets/templates/houston/roadmaps/roadmaps/index.hbs
135
+ - app/assets/templates/houston/roadmaps/roadmaps/show.hbs
136
+ - app/controllers/houston/roadmaps/api/v1/roadmap_controller.rb
137
+ - app/controllers/houston/roadmaps/dashboard_controller.rb
138
+ - app/controllers/houston/roadmaps/milestones_controller.rb
139
+ - app/controllers/houston/roadmaps/project_goals_controller.rb
140
+ - app/controllers/houston/roadmaps/roadmap_milestones_controller.rb
141
+ - app/controllers/houston/roadmaps/roadmaps_controller.rb
142
+ - app/helpers/houston/roadmaps/application_helper.rb
143
+ - app/models/roadmap.rb
144
+ - app/models/roadmap_commit.rb
145
+ - app/models/roadmap_milestone.rb
146
+ - app/models/roadmap_milestone_version.rb
147
+ - app/presenters/houston/roadmaps/milestone_api_presenter.rb
148
+ - app/presenters/houston/roadmaps/milestone_presenter.rb
149
+ - app/presenters/houston/roadmaps/roadmap_milestone_presenter.rb
150
+ - app/presenters/houston/roadmaps/roadmap_presenter.rb
151
+ - app/presenters/houston/roadmaps/ticket_presenter.rb
152
+ - app/views/houston/roadmaps/dashboard/show.html.erb
153
+ - app/views/houston/roadmaps/milestones/show.html.erb
154
+ - app/views/houston/roadmaps/project_goals/index.html.erb
155
+ - app/views/houston/roadmaps/roadmaps/_form.html.erb
156
+ - app/views/houston/roadmaps/roadmaps/edit.html.erb
157
+ - app/views/houston/roadmaps/roadmaps/history.html.erb
158
+ - app/views/houston/roadmaps/roadmaps/index.html.erb
159
+ - app/views/houston/roadmaps/roadmaps/new.html.erb
160
+ - app/views/houston/roadmaps/roadmaps/show.html.erb
161
+ - app/views/houston/roadmaps/roadmaps/show_editable.html.erb
162
+ - app/views/layouts/houston/roadmaps/application.html.erb
163
+ - app/views/layouts/houston/roadmaps/dashboard.html.erb
164
+ - bin/rails
165
+ - config/database.yml
166
+ - config/initializers/add_navigation_renderer.rb
167
+ - config/routes.rb
168
+ - db/.keep
169
+ - db/migrate/20140831210254_add_band_to_milestones.rb
170
+ - db/migrate/20140907212311_add_end_date_to_milestones.rb
171
+ - db/migrate/20140916230539_add_locked_to_milestone.rb
172
+ - db/migrate/20140927154728_add_closed_ticket_count_to_milestones.rb
173
+ - db/migrate/20140929024130_create_roadmap_commits.rb
174
+ - db/migrate/20141012023628_add_user_id_to_milestone_versions.rb
175
+ - db/migrate/20150102192805_add_lanes_to_milestones.rb
176
+ - db/migrate/20150119155145_add_goal_and_feedback_query_to_milestones.rb
177
+ - db/migrate/20150524203903_add_project_id_to_roadmap_commits.rb
178
+ - db/migrate/20150603203744_add_timestamps_to_roadmap_commits.rb
179
+ - db/migrate/20160206214746_rename_roadmap_feature_to_milestones.rb
180
+ - db/migrate/20160207154530_create_roadmaps.rb
181
+ - db/structure.sql
182
+ - houston-roadmaps.gemspec
183
+ - lib/houston-roadmaps.rb
184
+ - lib/houston/roadmaps.rb
185
+ - lib/houston/roadmaps/configuration.rb
186
+ - lib/houston/roadmaps/engine.rb
187
+ - lib/houston/roadmaps/milestone_ext.rb
188
+ - lib/houston/roadmaps/project_ext.rb
189
+ - lib/houston/roadmaps/railtie.rb
190
+ - lib/houston/roadmaps/version.rb
191
+ - lib/tasks/roadmap_tasks.rake
192
+ - test/acceptance/houston_dummy_test.rb
193
+ - test/dummy/houston.rb
194
+ - test/fixtures/projects.yml
195
+ - test/fixtures/users.yml
196
+ - test/test_helper.rb
197
+ - test/unit/fixtures_test.rb
198
+ homepage: https://github.com/houston/houston-roadmaps
199
+ licenses: []
200
+ metadata: {}
201
+ post_install_message:
202
+ rdoc_options: []
203
+ require_paths:
204
+ - lib
205
+ required_ruby_version: !ruby/object:Gem::Requirement
206
+ requirements:
207
+ - - ">="
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
210
+ required_rubygems_version: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
215
+ requirements: []
216
+ rubyforge_project:
217
+ rubygems_version: 2.2.2
218
+ signing_key:
219
+ specification_version: 4
220
+ summary: A module for Houston to facilitate managing milestones
221
+ test_files:
222
+ - test/acceptance/houston_dummy_test.rb
223
+ - test/dummy/houston.rb
224
+ - test/fixtures/projects.yml
225
+ - test/fixtures/users.yml
226
+ - test/test_helper.rb
227
+ - test/unit/fixtures_test.rb