calendar_nike 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 (75) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/calendar_nike/application.js +13 -0
  6. data/app/assets/javascripts/calendar_nike/calendar.js +2 -0
  7. data/app/assets/stylesheets/calendar_nike/application.css +29 -0
  8. data/app/assets/stylesheets/calendar_nike/calendar.css +24 -0
  9. data/app/controllers/calendar_nike/application_controller.rb +4 -0
  10. data/app/controllers/calendar_nike/calendar_controller.rb +31 -0
  11. data/app/helpers/calendar_nike/application_helper.rb +4 -0
  12. data/app/helpers/calendar_nike/calendar_helper.rb +4 -0
  13. data/app/views/calendar_nike/calendar/_month.html.erb +13 -0
  14. data/app/views/calendar_nike/calendar/_weeks.html.erb +13 -0
  15. data/app/views/calendar_nike/calendar/_year.html.erb +13 -0
  16. data/app/views/calendar_nike/calendar/index.html.erb +51 -0
  17. data/app/views/layouts/calendar_nike/application.html.erb +14 -0
  18. data/config/routes.rb +7 -0
  19. data/lib/calendar_nike/engine.rb +5 -0
  20. data/lib/calendar_nike/version.rb +3 -0
  21. data/lib/calendar_nike.rb +4 -0
  22. data/lib/tasks/calendar_nike_tasks.rake +4 -0
  23. data/test/calendar_nike_test.rb +7 -0
  24. data/test/controllers/calendar_nike/calendar_controller_test.rb +9 -0
  25. data/test/dummy/README.rdoc +28 -0
  26. data/test/dummy/Rakefile +6 -0
  27. data/test/dummy/app/assets/javascripts/application.js +13 -0
  28. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  29. data/test/dummy/app/controllers/application_controller.rb +5 -0
  30. data/test/dummy/app/helpers/application_helper.rb +2 -0
  31. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/test/dummy/bin/bundle +3 -0
  33. data/test/dummy/bin/rails +4 -0
  34. data/test/dummy/bin/rake +4 -0
  35. data/test/dummy/config/application.rb +23 -0
  36. data/test/dummy/config/boot.rb +5 -0
  37. data/test/dummy/config/database.yml +25 -0
  38. data/test/dummy/config/environment.rb +5 -0
  39. data/test/dummy/config/environments/development.rb +37 -0
  40. data/test/dummy/config/environments/production.rb +82 -0
  41. data/test/dummy/config/environments/test.rb +39 -0
  42. data/test/dummy/config/initializers/assets.rb +8 -0
  43. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  44. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  45. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/test/dummy/config/initializers/inflections.rb +16 -0
  47. data/test/dummy/config/initializers/mime_types.rb +4 -0
  48. data/test/dummy/config/initializers/session_store.rb +3 -0
  49. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  50. data/test/dummy/config/locales/en.yml +23 -0
  51. data/test/dummy/config/routes.rb +4 -0
  52. data/test/dummy/config/secrets.yml +22 -0
  53. data/test/dummy/config.ru +4 -0
  54. data/test/dummy/db/development.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +237 -0
  56. data/test/dummy/public/404.html +67 -0
  57. data/test/dummy/public/422.html +67 -0
  58. data/test/dummy/public/500.html +66 -0
  59. data/test/dummy/public/favicon.ico +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/0019c0827263ad81b43f760637a8961f +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/05c6b5493b23cd3e60c5eafade9c6f07 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/06958d6c49ac131139b8ec8cebd747f5 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/06e9966ebb030547fb0782657ae454cb +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/0799b62749835bafbf6234137532f058 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/3dca9bad775eb97606214f7ddcf6e5cd +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/43941a94299df73424353d1f25c4ab2e +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/7e75a730c57018ade57b6872c4dd1cd7 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/828e2f99f560a5df601692ced6ac88d5 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/9bc658079d5bb5b10c1fbabdb691cc54 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/ca3a1c57400802905035ab3c144edbb3 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/de3d9de2c571faaed43d508f683cca61 +0 -0
  72. data/test/helpers/calendar_nike/calendar_helper_test.rb +6 -0
  73. data/test/integration/navigation_test.rb +10 -0
  74. data/test/test_helper.rb +15 -0
  75. metadata +183 -0
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module CalendarNike
4
+ class CalendarHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,183 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: calendar_nike
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - pedrinhok
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.4
27
+ description: Gem CalendarNike provides a calendar view.
28
+ email:
29
+ - pedrokayser00@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - README.rdoc
36
+ - Rakefile
37
+ - app/assets/javascripts/calendar_nike/application.js
38
+ - app/assets/javascripts/calendar_nike/calendar.js
39
+ - app/assets/stylesheets/calendar_nike/application.css
40
+ - app/assets/stylesheets/calendar_nike/calendar.css
41
+ - app/controllers/calendar_nike/application_controller.rb
42
+ - app/controllers/calendar_nike/calendar_controller.rb
43
+ - app/helpers/calendar_nike/application_helper.rb
44
+ - app/helpers/calendar_nike/calendar_helper.rb
45
+ - app/views/calendar_nike/calendar/_month.html.erb
46
+ - app/views/calendar_nike/calendar/_weeks.html.erb
47
+ - app/views/calendar_nike/calendar/_year.html.erb
48
+ - app/views/calendar_nike/calendar/index.html.erb
49
+ - app/views/layouts/calendar_nike/application.html.erb
50
+ - config/routes.rb
51
+ - lib/calendar_nike.rb
52
+ - lib/calendar_nike/engine.rb
53
+ - lib/calendar_nike/version.rb
54
+ - lib/tasks/calendar_nike_tasks.rake
55
+ - test/calendar_nike_test.rb
56
+ - test/controllers/calendar_nike/calendar_controller_test.rb
57
+ - test/dummy/README.rdoc
58
+ - test/dummy/Rakefile
59
+ - test/dummy/app/assets/javascripts/application.js
60
+ - test/dummy/app/assets/stylesheets/application.css
61
+ - test/dummy/app/controllers/application_controller.rb
62
+ - test/dummy/app/helpers/application_helper.rb
63
+ - test/dummy/app/views/layouts/application.html.erb
64
+ - test/dummy/bin/bundle
65
+ - test/dummy/bin/rails
66
+ - test/dummy/bin/rake
67
+ - test/dummy/config.ru
68
+ - test/dummy/config/application.rb
69
+ - test/dummy/config/boot.rb
70
+ - test/dummy/config/database.yml
71
+ - test/dummy/config/environment.rb
72
+ - test/dummy/config/environments/development.rb
73
+ - test/dummy/config/environments/production.rb
74
+ - test/dummy/config/environments/test.rb
75
+ - test/dummy/config/initializers/assets.rb
76
+ - test/dummy/config/initializers/backtrace_silencers.rb
77
+ - test/dummy/config/initializers/cookies_serializer.rb
78
+ - test/dummy/config/initializers/filter_parameter_logging.rb
79
+ - test/dummy/config/initializers/inflections.rb
80
+ - test/dummy/config/initializers/mime_types.rb
81
+ - test/dummy/config/initializers/session_store.rb
82
+ - test/dummy/config/initializers/wrap_parameters.rb
83
+ - test/dummy/config/locales/en.yml
84
+ - test/dummy/config/routes.rb
85
+ - test/dummy/config/secrets.yml
86
+ - test/dummy/db/development.sqlite3
87
+ - test/dummy/log/development.log
88
+ - test/dummy/public/404.html
89
+ - test/dummy/public/422.html
90
+ - test/dummy/public/500.html
91
+ - test/dummy/public/favicon.ico
92
+ - test/dummy/tmp/cache/assets/development/sprockets/0019c0827263ad81b43f760637a8961f
93
+ - test/dummy/tmp/cache/assets/development/sprockets/05c6b5493b23cd3e60c5eafade9c6f07
94
+ - test/dummy/tmp/cache/assets/development/sprockets/06958d6c49ac131139b8ec8cebd747f5
95
+ - test/dummy/tmp/cache/assets/development/sprockets/06e9966ebb030547fb0782657ae454cb
96
+ - test/dummy/tmp/cache/assets/development/sprockets/0799b62749835bafbf6234137532f058
97
+ - test/dummy/tmp/cache/assets/development/sprockets/3dca9bad775eb97606214f7ddcf6e5cd
98
+ - test/dummy/tmp/cache/assets/development/sprockets/43941a94299df73424353d1f25c4ab2e
99
+ - test/dummy/tmp/cache/assets/development/sprockets/7e75a730c57018ade57b6872c4dd1cd7
100
+ - test/dummy/tmp/cache/assets/development/sprockets/828e2f99f560a5df601692ced6ac88d5
101
+ - test/dummy/tmp/cache/assets/development/sprockets/9bc658079d5bb5b10c1fbabdb691cc54
102
+ - test/dummy/tmp/cache/assets/development/sprockets/ca3a1c57400802905035ab3c144edbb3
103
+ - test/dummy/tmp/cache/assets/development/sprockets/de3d9de2c571faaed43d508f683cca61
104
+ - test/helpers/calendar_nike/calendar_helper_test.rb
105
+ - test/integration/navigation_test.rb
106
+ - test/test_helper.rb
107
+ homepage: https://github.com/pedrinhok/CalendarNike
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.2.2
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: ''
131
+ test_files:
132
+ - test/calendar_nike_test.rb
133
+ - test/helpers/calendar_nike/calendar_helper_test.rb
134
+ - test/integration/navigation_test.rb
135
+ - test/test_helper.rb
136
+ - test/controllers/calendar_nike/calendar_controller_test.rb
137
+ - test/dummy/Rakefile
138
+ - test/dummy/db/development.sqlite3
139
+ - test/dummy/app/assets/stylesheets/application.css
140
+ - test/dummy/app/assets/javascripts/application.js
141
+ - test/dummy/app/helpers/application_helper.rb
142
+ - test/dummy/app/controllers/application_controller.rb
143
+ - test/dummy/app/views/layouts/application.html.erb
144
+ - test/dummy/config/database.yml
145
+ - test/dummy/config/routes.rb
146
+ - test/dummy/config/application.rb
147
+ - test/dummy/config/environments/development.rb
148
+ - test/dummy/config/environments/test.rb
149
+ - test/dummy/config/environments/production.rb
150
+ - test/dummy/config/initializers/assets.rb
151
+ - test/dummy/config/initializers/session_store.rb
152
+ - test/dummy/config/initializers/cookies_serializer.rb
153
+ - test/dummy/config/initializers/filter_parameter_logging.rb
154
+ - test/dummy/config/initializers/backtrace_silencers.rb
155
+ - test/dummy/config/initializers/wrap_parameters.rb
156
+ - test/dummy/config/initializers/mime_types.rb
157
+ - test/dummy/config/initializers/inflections.rb
158
+ - test/dummy/config/locales/en.yml
159
+ - test/dummy/config/environment.rb
160
+ - test/dummy/config/boot.rb
161
+ - test/dummy/config/secrets.yml
162
+ - test/dummy/tmp/cache/assets/development/sprockets/05c6b5493b23cd3e60c5eafade9c6f07
163
+ - test/dummy/tmp/cache/assets/development/sprockets/0799b62749835bafbf6234137532f058
164
+ - test/dummy/tmp/cache/assets/development/sprockets/ca3a1c57400802905035ab3c144edbb3
165
+ - test/dummy/tmp/cache/assets/development/sprockets/de3d9de2c571faaed43d508f683cca61
166
+ - test/dummy/tmp/cache/assets/development/sprockets/9bc658079d5bb5b10c1fbabdb691cc54
167
+ - test/dummy/tmp/cache/assets/development/sprockets/3dca9bad775eb97606214f7ddcf6e5cd
168
+ - test/dummy/tmp/cache/assets/development/sprockets/06958d6c49ac131139b8ec8cebd747f5
169
+ - test/dummy/tmp/cache/assets/development/sprockets/828e2f99f560a5df601692ced6ac88d5
170
+ - test/dummy/tmp/cache/assets/development/sprockets/06e9966ebb030547fb0782657ae454cb
171
+ - test/dummy/tmp/cache/assets/development/sprockets/0019c0827263ad81b43f760637a8961f
172
+ - test/dummy/tmp/cache/assets/development/sprockets/7e75a730c57018ade57b6872c4dd1cd7
173
+ - test/dummy/tmp/cache/assets/development/sprockets/43941a94299df73424353d1f25c4ab2e
174
+ - test/dummy/README.rdoc
175
+ - test/dummy/public/404.html
176
+ - test/dummy/public/favicon.ico
177
+ - test/dummy/public/422.html
178
+ - test/dummy/public/500.html
179
+ - test/dummy/bin/bundle
180
+ - test/dummy/bin/rake
181
+ - test/dummy/bin/rails
182
+ - test/dummy/log/development.log
183
+ - test/dummy/config.ru