hello_anu 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 (53) hide show
  1. data/Gemfile +38 -0
  2. data/Gemfile.lock +115 -0
  3. data/README.md +32 -0
  4. data/README.rdoc +261 -0
  5. data/Rakefile +7 -0
  6. data/app/assets/images/rails.png +0 -0
  7. data/app/assets/javascripts/application.js +15 -0
  8. data/app/assets/stylesheets/application.css +13 -0
  9. data/app/controllers/application_controller.rb +3 -0
  10. data/app/helpers/application_helper.rb +2 -0
  11. data/app/mailers/.gitkeep +0 -0
  12. data/app/models/.gitkeep +0 -0
  13. data/app/views/layouts/application.html.erb +14 -0
  14. data/config/application.rb +62 -0
  15. data/config/boot.rb +6 -0
  16. data/config/database.yml +25 -0
  17. data/config/environment.rb +5 -0
  18. data/config/environments/development.rb +37 -0
  19. data/config/environments/production.rb +67 -0
  20. data/config/environments/test.rb +37 -0
  21. data/config/initializers/backtrace_silencers.rb +7 -0
  22. data/config/initializers/inflections.rb +15 -0
  23. data/config/initializers/mime_types.rb +5 -0
  24. data/config/initializers/secret_token.rb +7 -0
  25. data/config/initializers/session_store.rb +8 -0
  26. data/config/initializers/wrap_parameters.rb +14 -0
  27. data/config/locales/en.yml +5 -0
  28. data/config/routes.rb +58 -0
  29. data/config.ru +4 -0
  30. data/db/seeds.rb +7 -0
  31. data/doc/README_FOR_APP +2 -0
  32. data/hello_anu.gemspec +20 -0
  33. data/lib/assets/.gitkeep +0 -0
  34. data/lib/hello_anu.rb +5 -0
  35. data/lib/tasks/.gitkeep +0 -0
  36. data/log/.gitkeep +0 -0
  37. data/public/404.html +26 -0
  38. data/public/422.html +26 -0
  39. data/public/500.html +25 -0
  40. data/public/favicon.ico +0 -0
  41. data/public/index.html +241 -0
  42. data/public/robots.txt +5 -0
  43. data/script/rails +6 -0
  44. data/test/fixtures/.gitkeep +0 -0
  45. data/test/functional/.gitkeep +0 -0
  46. data/test/integration/.gitkeep +0 -0
  47. data/test/performance/browsing_test.rb +12 -0
  48. data/test/test_helper.rb +13 -0
  49. data/test/unit/.gitkeep +0 -0
  50. data/vendor/assets/javascripts/.gitkeep +0 -0
  51. data/vendor/assets/stylesheets/.gitkeep +0 -0
  52. data/vendor/plugins/.gitkeep +0 -0
  53. metadata +152 -0
metadata ADDED
@@ -0,0 +1,152 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hello_anu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Anupama Iyengar
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-11-13 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.3'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.3'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
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: rspec
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
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
+ description: extend Date class
63
+ email:
64
+ - sadicarnot@gmail.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - Gemfile
70
+ - Gemfile.lock
71
+ - README.md
72
+ - README.rdoc
73
+ - Rakefile
74
+ - app/assets/images/rails.png
75
+ - app/assets/javascripts/application.js
76
+ - app/assets/stylesheets/application.css
77
+ - app/controllers/application_controller.rb
78
+ - app/helpers/application_helper.rb
79
+ - app/mailers/.gitkeep
80
+ - app/models/.gitkeep
81
+ - app/views/layouts/application.html.erb
82
+ - config.ru
83
+ - config/application.rb
84
+ - config/boot.rb
85
+ - config/database.yml
86
+ - config/environment.rb
87
+ - config/environments/development.rb
88
+ - config/environments/production.rb
89
+ - config/environments/test.rb
90
+ - config/initializers/backtrace_silencers.rb
91
+ - config/initializers/inflections.rb
92
+ - config/initializers/mime_types.rb
93
+ - config/initializers/secret_token.rb
94
+ - config/initializers/session_store.rb
95
+ - config/initializers/wrap_parameters.rb
96
+ - config/locales/en.yml
97
+ - config/routes.rb
98
+ - db/seeds.rb
99
+ - doc/README_FOR_APP
100
+ - hello_anu-0.0.0.gem
101
+ - hello_anu.gemspec
102
+ - lib/assets/.gitkeep
103
+ - lib/hello_anu.rb
104
+ - lib/tasks/.gitkeep
105
+ - log/.gitkeep
106
+ - public/404.html
107
+ - public/422.html
108
+ - public/500.html
109
+ - public/favicon.ico
110
+ - public/index.html
111
+ - public/robots.txt
112
+ - script/rails
113
+ - test/fixtures/.gitkeep
114
+ - test/functional/.gitkeep
115
+ - test/integration/.gitkeep
116
+ - test/performance/browsing_test.rb
117
+ - test/test_helper.rb
118
+ - test/unit/.gitkeep
119
+ - vendor/assets/javascripts/.gitkeep
120
+ - vendor/assets/stylesheets/.gitkeep
121
+ - vendor/plugins/.gitkeep
122
+ homepage: ''
123
+ licenses: []
124
+ post_install_message:
125
+ rdoc_options: []
126
+ require_paths:
127
+ - lib
128
+ required_ruby_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ required_rubygems_version: !ruby/object:Gem::Requirement
135
+ none: false
136
+ requirements:
137
+ - - ! '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 1.8.24
143
+ signing_key:
144
+ specification_version: 3
145
+ summary: more methods add to the Date class
146
+ test_files:
147
+ - test/fixtures/.gitkeep
148
+ - test/functional/.gitkeep
149
+ - test/integration/.gitkeep
150
+ - test/performance/browsing_test.rb
151
+ - test/test_helper.rb
152
+ - test/unit/.gitkeep