remarkable_rails 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data/CHANGELOG +0 -0
  2. data/LICENSE +0 -0
  3. data/README +0 -0
  4. data/lib/remarkable_rails/action_controller/base.rb +0 -0
  5. data/lib/remarkable_rails/action_controller/macro_stubs.rb +0 -0
  6. data/lib/remarkable_rails/action_controller/matchers/assign_to_matcher.rb +0 -0
  7. data/lib/remarkable_rails/action_controller/matchers/filter_params_matcher.rb +0 -0
  8. data/lib/remarkable_rails/action_controller/matchers/redirect_to_matcher.rb +0 -0
  9. data/lib/remarkable_rails/action_controller/matchers/render_template_matcher.rb +0 -0
  10. data/lib/remarkable_rails/action_controller/matchers/respond_with_matcher.rb +0 -0
  11. data/lib/remarkable_rails/action_controller/matchers/route_matcher.rb +0 -0
  12. data/lib/remarkable_rails/action_controller/matchers/set_session_matcher.rb +0 -0
  13. data/lib/remarkable_rails/action_controller/matchers/set_the_flash_matcher.rb +0 -0
  14. data/lib/remarkable_rails/action_controller.rb +0 -0
  15. data/lib/remarkable_rails/action_view/base.rb +0 -0
  16. data/lib/remarkable_rails/action_view.rb +0 -0
  17. data/lib/remarkable_rails/active_orm.rb +0 -0
  18. data/lib/remarkable_rails.rb +0 -0
  19. data/locale/en.yml +0 -0
  20. data/spec/action_controller/assign_to_matcher_spec.rb +0 -0
  21. data/spec/action_controller/filter_params_matcher_spec.rb +0 -0
  22. data/spec/action_controller/macro_stubs_spec.rb +0 -0
  23. data/spec/action_controller/redirect_to_matcher_spec.rb +0 -0
  24. data/spec/action_controller/render_template_matcher_spec.rb +0 -0
  25. data/spec/action_controller/respond_with_matcher_spec.rb +0 -0
  26. data/spec/action_controller/route_matcher_spec.rb +0 -0
  27. data/spec/action_controller/set_session_matcher_spec.rb +0 -0
  28. data/spec/action_controller/set_the_flash_matcher_spec.rb +0 -0
  29. data/spec/application/application.rb +0 -0
  30. data/spec/application/examples/_example.html.erb +0 -0
  31. data/spec/application/examples/example.html.erb +0 -0
  32. data/spec/application/examples/example.xml.builder +0 -0
  33. data/spec/application/examples/new.html.erb +0 -0
  34. data/spec/application/layouts/examples.html.erb +0 -0
  35. data/spec/application/projects/new.html.erb +0 -0
  36. data/spec/application/tasks_controller.rb +0 -0
  37. data/spec/functional_builder.rb +0 -0
  38. data/spec/rcov.opts +0 -0
  39. data/spec/spec.opts +0 -0
  40. data/spec/spec_helper.rb +0 -0
  41. metadata +30 -30
data/CHANGELOG CHANGED
File without changes
data/LICENSE CHANGED
File without changes
data/README CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/locale/en.yml CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/spec/rcov.opts CHANGED
File without changes
data/spec/spec.opts CHANGED
File without changes
data/spec/spec_helper.rb CHANGED
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remarkable_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Brando
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-04-13 00:00:00 +02:00
13
+ date: 2009-04-15 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -31,7 +31,7 @@ dependencies:
31
31
  requirements:
32
32
  - - ">="
33
33
  - !ruby/object:Gem::Version
34
- version: 3.0.2
34
+ version: 3.0.3
35
35
  version:
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: remarkable_activerecord
@@ -41,7 +41,7 @@ dependencies:
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- version: 3.0.2
44
+ version: 3.0.3
45
45
  version:
46
46
  description: "Remarkable Rails: collection of matchers and macros with I18n for Rails"
47
47
  email:
@@ -59,25 +59,25 @@ files:
59
59
  - README
60
60
  - LICENSE
61
61
  - CHANGELOG
62
+ - lib/remarkable_rails.rb
62
63
  - lib/remarkable_rails
64
+ - lib/remarkable_rails/action_view
65
+ - lib/remarkable_rails/action_view/base.rb
63
66
  - lib/remarkable_rails/action_controller
64
- - lib/remarkable_rails/action_controller/base.rb
65
67
  - lib/remarkable_rails/action_controller/macro_stubs.rb
68
+ - lib/remarkable_rails/action_controller/base.rb
66
69
  - lib/remarkable_rails/action_controller/matchers
70
+ - lib/remarkable_rails/action_controller/matchers/route_matcher.rb
71
+ - lib/remarkable_rails/action_controller/matchers/set_the_flash_matcher.rb
72
+ - lib/remarkable_rails/action_controller/matchers/set_session_matcher.rb
73
+ - lib/remarkable_rails/action_controller/matchers/respond_with_matcher.rb
67
74
  - lib/remarkable_rails/action_controller/matchers/assign_to_matcher.rb
68
75
  - lib/remarkable_rails/action_controller/matchers/filter_params_matcher.rb
69
76
  - lib/remarkable_rails/action_controller/matchers/redirect_to_matcher.rb
70
77
  - lib/remarkable_rails/action_controller/matchers/render_template_matcher.rb
71
- - lib/remarkable_rails/action_controller/matchers/respond_with_matcher.rb
72
- - lib/remarkable_rails/action_controller/matchers/route_matcher.rb
73
- - lib/remarkable_rails/action_controller/matchers/set_session_matcher.rb
74
- - lib/remarkable_rails/action_controller/matchers/set_the_flash_matcher.rb
75
- - lib/remarkable_rails/action_controller.rb
76
- - lib/remarkable_rails/action_view
77
- - lib/remarkable_rails/action_view/base.rb
78
78
  - lib/remarkable_rails/action_view.rb
79
+ - lib/remarkable_rails/action_controller.rb
79
80
  - lib/remarkable_rails/active_orm.rb
80
- - lib/remarkable_rails.rb
81
81
  - locale/en.yml
82
82
  has_rdoc: true
83
83
  homepage: http://github.com/carlosbrando/remarkable
@@ -106,29 +106,29 @@ signing_key:
106
106
  specification_version: 2
107
107
  summary: "Remarkable Rails: collection of matchers and macros with I18n for Rails"
108
108
  test_files:
109
- - spec/action_controller
110
- - spec/action_controller/assign_to_matcher_spec.rb
111
- - spec/action_controller/filter_params_matcher_spec.rb
112
- - spec/action_controller/macro_stubs_spec.rb
113
- - spec/action_controller/redirect_to_matcher_spec.rb
114
- - spec/action_controller/render_template_matcher_spec.rb
115
- - spec/action_controller/respond_with_matcher_spec.rb
116
- - spec/action_controller/route_matcher_spec.rb
117
- - spec/action_controller/set_session_matcher_spec.rb
118
- - spec/action_controller/set_the_flash_matcher_spec.rb
119
109
  - spec/application
120
- - spec/application/application.rb
121
110
  - spec/application/examples
122
- - spec/application/examples/example.html.erb
123
- - spec/application/examples/example.xml.builder
124
111
  - spec/application/examples/new.html.erb
112
+ - spec/application/examples/example.xml.builder
125
113
  - spec/application/examples/_example.html.erb
126
- - spec/application/layouts
127
- - spec/application/layouts/examples.html.erb
114
+ - spec/application/examples/example.html.erb
115
+ - spec/application/application.rb
128
116
  - spec/application/projects
129
117
  - spec/application/projects/new.html.erb
118
+ - spec/application/layouts
119
+ - spec/application/layouts/examples.html.erb
130
120
  - spec/application/tasks_controller.rb
131
- - spec/functional_builder.rb
121
+ - spec/action_controller
122
+ - spec/action_controller/macro_stubs_spec.rb
123
+ - spec/action_controller/assign_to_matcher_spec.rb
124
+ - spec/action_controller/set_session_matcher_spec.rb
125
+ - spec/action_controller/redirect_to_matcher_spec.rb
126
+ - spec/action_controller/route_matcher_spec.rb
127
+ - spec/action_controller/render_template_matcher_spec.rb
128
+ - spec/action_controller/respond_with_matcher_spec.rb
129
+ - spec/action_controller/filter_params_matcher_spec.rb
130
+ - spec/action_controller/set_the_flash_matcher_spec.rb
132
131
  - spec/rcov.opts
133
- - spec/spec.opts
134
132
  - spec/spec_helper.rb
133
+ - spec/functional_builder.rb
134
+ - spec/spec.opts