archerplume 0.0.1

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 (96) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/Gemfile +45 -0
  4. data/Gemfile.lock +118 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +29 -0
  7. data/README.rdoc +28 -0
  8. data/Rakefile +6 -0
  9. data/app/assets/images/.keep +0 -0
  10. data/app/assets/javascripts/application.js +16 -0
  11. data/app/assets/javascripts/articles.js.coffee +3 -0
  12. data/app/assets/javascripts/comments.js.coffee +3 -0
  13. data/app/assets/javascripts/welcome.js.coffee +3 -0
  14. data/app/assets/stylesheets/application.css +18 -0
  15. data/app/assets/stylesheets/articles.css.scss +3 -0
  16. data/app/assets/stylesheets/comments.css.scss +3 -0
  17. data/app/assets/stylesheets/welcome.css.scss +6 -0
  18. data/app/controllers/application_controller.rb +5 -0
  19. data/app/controllers/articles_controller.rb +50 -0
  20. data/app/controllers/comments_controller.rb +21 -0
  21. data/app/controllers/concerns/.keep +0 -0
  22. data/app/controllers/welcome_controller.rb +4 -0
  23. data/app/helpers/application_helper.rb +2 -0
  24. data/app/helpers/articles_helper.rb +2 -0
  25. data/app/helpers/comments_helper.rb +2 -0
  26. data/app/helpers/welcome_helper.rb +2 -0
  27. data/app/mailers/.keep +0 -0
  28. data/app/models/.keep +0 -0
  29. data/app/models/article.rb +5 -0
  30. data/app/models/comment.rb +3 -0
  31. data/app/models/concerns/.keep +0 -0
  32. data/app/views/articles/_form.html.erb +24 -0
  33. data/app/views/articles/edit.html.erb +3 -0
  34. data/app/views/articles/index.html.erb +18 -0
  35. data/app/views/articles/new.html.erb +27 -0
  36. data/app/views/articles/show.html.erb +26 -0
  37. data/app/views/comments/_comment.html.erb +13 -0
  38. data/app/views/comments/_form.html.erb +27 -0
  39. data/app/views/layouts/application.html.erb +14 -0
  40. data/app/views/welcome/index.html.erb +1 -0
  41. data/archerplume.gemspec +23 -0
  42. data/bin/bundle +3 -0
  43. data/bin/rails +4 -0
  44. data/bin/rake +4 -0
  45. data/config/application.rb +23 -0
  46. data/config/boot.rb +4 -0
  47. data/config/database.yml +25 -0
  48. data/config/environment.rb +5 -0
  49. data/config/environments/development.rb +29 -0
  50. data/config/environments/production.rb +80 -0
  51. data/config/environments/test.rb +36 -0
  52. data/config/initializers/backtrace_silencers.rb +7 -0
  53. data/config/initializers/filter_parameter_logging.rb +4 -0
  54. data/config/initializers/inflections.rb +16 -0
  55. data/config/initializers/mime_types.rb +5 -0
  56. data/config/initializers/secret_token.rb +12 -0
  57. data/config/initializers/session_store.rb +3 -0
  58. data/config/initializers/wrap_parameters.rb +14 -0
  59. data/config/locales/en.yml +23 -0
  60. data/config/routes.rb +62 -0
  61. data/config.ru +4 -0
  62. data/db/migrate/20140619134507_create_articles.rb +10 -0
  63. data/db/migrate/20140619143648_create_comments.rb +11 -0
  64. data/db/schema.rb +33 -0
  65. data/db/seeds.rb +7 -0
  66. data/doc/api/created.rid +0 -0
  67. data/lib/archerplume/version.rb +3 -0
  68. data/lib/archerplume.rb +5 -0
  69. data/lib/assets/.keep +0 -0
  70. data/lib/tasks/.keep +0 -0
  71. data/log/.keep +0 -0
  72. data/public/404.html +58 -0
  73. data/public/422.html +58 -0
  74. data/public/500.html +57 -0
  75. data/public/favicon.ico +0 -0
  76. data/public/robots.txt +5 -0
  77. data/test/controllers/.keep +0 -0
  78. data/test/controllers/articles_controller_test.rb +7 -0
  79. data/test/controllers/comments_controller_test.rb +7 -0
  80. data/test/controllers/welcome_controller_test.rb +9 -0
  81. data/test/fixtures/.keep +0 -0
  82. data/test/fixtures/articles.yml +9 -0
  83. data/test/fixtures/comments.yml +11 -0
  84. data/test/helpers/.keep +0 -0
  85. data/test/helpers/articles_helper_test.rb +4 -0
  86. data/test/helpers/comments_helper_test.rb +4 -0
  87. data/test/helpers/welcome_helper_test.rb +4 -0
  88. data/test/integration/.keep +0 -0
  89. data/test/mailers/.keep +0 -0
  90. data/test/models/.keep +0 -0
  91. data/test/models/article_test.rb +7 -0
  92. data/test/models/comment_test.rb +7 -0
  93. data/test/test_helper.rb +15 -0
  94. data/vendor/assets/javascripts/.keep +0 -0
  95. data/vendor/assets/stylesheets/.keep +0 -0
  96. metadata +186 -0
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ArticlesControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class CommentsControllerTest < ActionController::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class WelcomeControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
File without changes
@@ -0,0 +1,9 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ title: MyString
5
+ text: MyText
6
+
7
+ two:
8
+ title: MyString
9
+ text: MyText
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ commenter: MyString
5
+ body: MyText
6
+ article_id:
7
+
8
+ two:
9
+ commenter: MyString
10
+ body: MyText
11
+ article_id:
File without changes
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class ArticlesHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class CommentsHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class WelcomeHelperTest < ActionView::TestCase
4
+ end
File without changes
File without changes
data/test/models/.keep ADDED
File without changes
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class ArticleTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class CommentTest < ActiveSupport::TestCase
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ end
@@ -0,0 +1,15 @@
1
+ ENV["RAILS_ENV"] ||= "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ ActiveRecord::Migration.check_pending!
7
+
8
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
9
+ #
10
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
11
+ # -- they do not yet inherit this setting
12
+ fixtures :all
13
+
14
+ # Add more helper methods to be used by all tests here...
15
+ end
File without changes
File without changes
metadata ADDED
@@ -0,0 +1,186 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: archerplume
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Weldon
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: ArcherPlume Blog FrameWork
42
+ email:
43
+ - "weldon23.henson23@gmail.com\t"
44
+ executables:
45
+ - bundle
46
+ - rails
47
+ - rake
48
+ extensions: []
49
+ extra_rdoc_files: []
50
+ files:
51
+ - .gitignore
52
+ - Gemfile
53
+ - Gemfile.lock
54
+ - LICENSE.txt
55
+ - README.md
56
+ - README.rdoc
57
+ - Rakefile
58
+ - app/assets/images/.keep
59
+ - app/assets/javascripts/application.js
60
+ - app/assets/javascripts/articles.js.coffee
61
+ - app/assets/javascripts/comments.js.coffee
62
+ - app/assets/javascripts/welcome.js.coffee
63
+ - app/assets/stylesheets/application.css
64
+ - app/assets/stylesheets/articles.css.scss
65
+ - app/assets/stylesheets/comments.css.scss
66
+ - app/assets/stylesheets/welcome.css.scss
67
+ - app/controllers/application_controller.rb
68
+ - app/controllers/articles_controller.rb
69
+ - app/controllers/comments_controller.rb
70
+ - app/controllers/concerns/.keep
71
+ - app/controllers/welcome_controller.rb
72
+ - app/helpers/application_helper.rb
73
+ - app/helpers/articles_helper.rb
74
+ - app/helpers/comments_helper.rb
75
+ - app/helpers/welcome_helper.rb
76
+ - app/mailers/.keep
77
+ - app/models/.keep
78
+ - app/models/article.rb
79
+ - app/models/comment.rb
80
+ - app/models/concerns/.keep
81
+ - app/views/articles/_form.html.erb
82
+ - app/views/articles/edit.html.erb
83
+ - app/views/articles/index.html.erb
84
+ - app/views/articles/new.html.erb
85
+ - app/views/articles/show.html.erb
86
+ - app/views/comments/_comment.html.erb
87
+ - app/views/comments/_form.html.erb
88
+ - app/views/layouts/application.html.erb
89
+ - app/views/welcome/index.html.erb
90
+ - archerplume.gemspec
91
+ - bin/bundle
92
+ - bin/rails
93
+ - bin/rake
94
+ - config.ru
95
+ - config/application.rb
96
+ - config/boot.rb
97
+ - config/database.yml
98
+ - config/environment.rb
99
+ - config/environments/development.rb
100
+ - config/environments/production.rb
101
+ - config/environments/test.rb
102
+ - config/initializers/backtrace_silencers.rb
103
+ - config/initializers/filter_parameter_logging.rb
104
+ - config/initializers/inflections.rb
105
+ - config/initializers/mime_types.rb
106
+ - config/initializers/secret_token.rb
107
+ - config/initializers/session_store.rb
108
+ - config/initializers/wrap_parameters.rb
109
+ - config/locales/en.yml
110
+ - config/routes.rb
111
+ - db/migrate/20140619134507_create_articles.rb
112
+ - db/migrate/20140619143648_create_comments.rb
113
+ - db/schema.rb
114
+ - db/seeds.rb
115
+ - doc/api/created.rid
116
+ - lib/archerplume.rb
117
+ - lib/archerplume/version.rb
118
+ - lib/assets/.keep
119
+ - lib/tasks/.keep
120
+ - log/.keep
121
+ - public/404.html
122
+ - public/422.html
123
+ - public/500.html
124
+ - public/favicon.ico
125
+ - public/robots.txt
126
+ - test/controllers/.keep
127
+ - test/controllers/articles_controller_test.rb
128
+ - test/controllers/comments_controller_test.rb
129
+ - test/controllers/welcome_controller_test.rb
130
+ - test/fixtures/.keep
131
+ - test/fixtures/articles.yml
132
+ - test/fixtures/comments.yml
133
+ - test/helpers/.keep
134
+ - test/helpers/articles_helper_test.rb
135
+ - test/helpers/comments_helper_test.rb
136
+ - test/helpers/welcome_helper_test.rb
137
+ - test/integration/.keep
138
+ - test/mailers/.keep
139
+ - test/models/.keep
140
+ - test/models/article_test.rb
141
+ - test/models/comment_test.rb
142
+ - test/test_helper.rb
143
+ - vendor/assets/javascripts/.keep
144
+ - vendor/assets/stylesheets/.keep
145
+ homepage: http://archercraftstore.github.io
146
+ licenses:
147
+ - MIT
148
+ metadata: {}
149
+ post_install_message:
150
+ rdoc_options: []
151
+ require_paths:
152
+ - lib
153
+ required_ruby_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - '>='
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ required_rubygems_version: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - '>='
161
+ - !ruby/object:Gem::Version
162
+ version: '0'
163
+ requirements: []
164
+ rubyforge_project:
165
+ rubygems_version: 2.0.2
166
+ signing_key:
167
+ specification_version: 4
168
+ summary: ABF
169
+ test_files:
170
+ - test/controllers/.keep
171
+ - test/controllers/articles_controller_test.rb
172
+ - test/controllers/comments_controller_test.rb
173
+ - test/controllers/welcome_controller_test.rb
174
+ - test/fixtures/.keep
175
+ - test/fixtures/articles.yml
176
+ - test/fixtures/comments.yml
177
+ - test/helpers/.keep
178
+ - test/helpers/articles_helper_test.rb
179
+ - test/helpers/comments_helper_test.rb
180
+ - test/helpers/welcome_helper_test.rb
181
+ - test/integration/.keep
182
+ - test/mailers/.keep
183
+ - test/models/.keep
184
+ - test/models/article_test.rb
185
+ - test/models/comment_test.rb
186
+ - test/test_helper.rb