twitter_bootstrap_markup 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. data/.gitignore +4 -4
  2. data/Gemfile +4 -4
  3. data/README.md +28 -28
  4. data/Rakefile +1 -1
  5. data/lib/twitter_bootstrap_markup.rb +52 -52
  6. data/lib/twitter_bootstrap_markup/add_on.rb +8 -8
  7. data/lib/twitter_bootstrap_markup/alert.rb +35 -35
  8. data/lib/twitter_bootstrap_markup/badge.rb +4 -4
  9. data/lib/twitter_bootstrap_markup/brand.rb +8 -8
  10. data/lib/twitter_bootstrap_markup/breadcrumb.rb +21 -21
  11. data/lib/twitter_bootstrap_markup/button.rb +16 -16
  12. data/lib/twitter_bootstrap_markup/button_base.rb +44 -44
  13. data/lib/twitter_bootstrap_markup/control_group.rb +25 -25
  14. data/lib/twitter_bootstrap_markup/divider.rb +29 -29
  15. data/lib/twitter_bootstrap_markup/dropdown_button.rb +58 -58
  16. data/lib/twitter_bootstrap_markup/dropdown_link.rb +29 -29
  17. data/lib/twitter_bootstrap_markup/extended_input.rb +10 -10
  18. data/lib/twitter_bootstrap_markup/extension/hash.rb +10 -10
  19. data/lib/twitter_bootstrap_markup/fieldset.rb +17 -17
  20. data/lib/twitter_bootstrap_markup/form.rb +26 -26
  21. data/lib/twitter_bootstrap_markup/grid_column.rb +13 -13
  22. data/lib/twitter_bootstrap_markup/grid_row.rb +8 -8
  23. data/lib/twitter_bootstrap_markup/help.rb +23 -23
  24. data/lib/twitter_bootstrap_markup/icon.rb +17 -17
  25. data/lib/twitter_bootstrap_markup/input.rb +24 -24
  26. data/lib/twitter_bootstrap_markup/input_size.rb +21 -21
  27. data/lib/twitter_bootstrap_markup/label.rb +4 -4
  28. data/lib/twitter_bootstrap_markup/label_base.rb +32 -32
  29. data/lib/twitter_bootstrap_markup/link.rb +16 -16
  30. data/lib/twitter_bootstrap_markup/link_button.rb +17 -17
  31. data/lib/twitter_bootstrap_markup/nav_bar.rb +33 -33
  32. data/lib/twitter_bootstrap_markup/nav_container.rb +9 -9
  33. data/lib/twitter_bootstrap_markup/nav_header.rb +8 -8
  34. data/lib/twitter_bootstrap_markup/nav_list.rb +15 -15
  35. data/lib/twitter_bootstrap_markup/nav_list_container.rb +9 -9
  36. data/lib/twitter_bootstrap_markup/nav_tab.rb +9 -9
  37. data/lib/twitter_bootstrap_markup/nav_tab_container.rb +12 -12
  38. data/lib/twitter_bootstrap_markup/page_header.rb +16 -16
  39. data/lib/twitter_bootstrap_markup/pagination.rb +28 -28
  40. data/lib/twitter_bootstrap_markup/popover.rb +19 -19
  41. data/lib/twitter_bootstrap_markup/progress_bar.rb +42 -42
  42. data/lib/twitter_bootstrap_markup/select.rb +54 -54
  43. data/lib/twitter_bootstrap_markup/side_position.rb +14 -14
  44. data/lib/twitter_bootstrap_markup/submit.rb +9 -9
  45. data/lib/twitter_bootstrap_markup/tab.rb +13 -13
  46. data/lib/twitter_bootstrap_markup/tab_content.rb +28 -28
  47. data/lib/twitter_bootstrap_markup/table.rb +28 -28
  48. data/lib/twitter_bootstrap_markup/tag.rb +62 -62
  49. data/lib/twitter_bootstrap_markup/tag_builder.rb +21 -21
  50. data/lib/twitter_bootstrap_markup/textarea.rb +14 -14
  51. data/lib/twitter_bootstrap_markup/tooltip.rb +18 -18
  52. data/lib/twitter_bootstrap_markup/ul_container.rb +27 -27
  53. data/lib/twitter_bootstrap_markup/version.rb +3 -3
  54. data/lib/twitter_bootstrap_markup/well.rb +27 -27
  55. data/markup/alerts.html +74 -74
  56. data/markup/badges.html +64 -64
  57. data/markup/breadcrumbs.html +58 -58
  58. data/markup/buttons.html +94 -94
  59. data/markup/control_groups.html +76 -76
  60. data/markup/css/bootstrap-responsive.css +815 -815
  61. data/markup/css/bootstrap-responsive.min.css +9 -9
  62. data/markup/css/bootstrap.css +4914 -4914
  63. data/markup/css/bootstrap.min.css +727 -727
  64. data/markup/dropdown_buttons.html +247 -247
  65. data/markup/dropdown_links.html +111 -111
  66. data/markup/form_fields.html +87 -87
  67. data/markup/forms.html +80 -80
  68. data/markup/grid_system.html +86 -86
  69. data/markup/index.html +38 -38
  70. data/markup/js/bootstrap.js +1835 -1835
  71. data/markup/js/bootstrap.min.js +6 -6
  72. data/markup/js/jquery-1.7.2.js +9402 -9402
  73. data/markup/labels.html +64 -64
  74. data/markup/link_buttons.html +94 -94
  75. data/markup/nav_bars.html +103 -103
  76. data/markup/nav_lists.html +53 -53
  77. data/markup/paginations.html +67 -67
  78. data/markup/popovers.html +55 -55
  79. data/markup/progress_bars.html +92 -92
  80. data/markup/selects.html +123 -123
  81. data/markup/tabs.html +45 -45
  82. data/markup/textareas.html +89 -89
  83. data/markup/textboxes.html +94 -94
  84. data/markup/tooltips.html +55 -55
  85. data/spec/add_on_spec.rb +9 -9
  86. data/spec/alert_spec.rb +77 -77
  87. data/spec/badge_spec.rb +40 -28
  88. data/spec/brand_spec.rb +9 -9
  89. data/spec/breadcrumb_spec.rb +32 -32
  90. data/spec/button_spec.rb +51 -51
  91. data/spec/control_group_spec.rb +28 -28
  92. data/spec/divider_spec.rb +16 -16
  93. data/spec/dropdown_button_spec.rb +100 -100
  94. data/spec/dropdown_link_spec.rb +47 -47
  95. data/spec/fieldset_spec.rb +21 -21
  96. data/spec/form_fields_spec.rb +70 -70
  97. data/spec/form_spec.rb +34 -34
  98. data/spec/grid_system_spec.rb +68 -68
  99. data/spec/help_spec.rb +12 -12
  100. data/spec/icon_spec.rb +17 -17
  101. data/spec/input_spec.rb +10 -10
  102. data/spec/label_spec.rb +40 -28
  103. data/spec/link_button_spec.rb +51 -51
  104. data/spec/link_spec.rb +28 -28
  105. data/spec/nav_bar_spec.rb +37 -37
  106. data/spec/nav_list_spec.rb +39 -39
  107. data/spec/page_header_spec.rb +12 -12
  108. data/spec/pagination_spec.rb +17 -17
  109. data/spec/popover_spec.rb +14 -14
  110. data/spec/progress_bar_spec.rb +52 -52
  111. data/spec/select_spec.rb +59 -59
  112. data/spec/spec_helper.rb +11 -11
  113. data/spec/support/helpers/html_helper.rb +10 -10
  114. data/spec/table_spec.rb +32 -32
  115. data/spec/tabs_spec.rb +21 -21
  116. data/spec/tag_builder_spec.rb +37 -37
  117. data/spec/tag_spec.rb +51 -51
  118. data/spec/text_area_spec.rb +42 -42
  119. data/spec/textbox_spec.rb +59 -59
  120. data/spec/tooltip_spec.rb +14 -14
  121. data/spec/well_spec.rb +16 -16
  122. data/twitter_bootstrap_markup.gemspec +25 -25
  123. metadata +25 -9
@@ -1,13 +1,13 @@
1
- require 'spec_helper'
2
-
3
- describe PageHeader do
4
-
5
- it 'title' do
6
- PageHeader.new('Page Title').to_s.should eq '<div class="page-header"><h1>Page Title</h1></div>'
7
- end
8
-
9
- it 'title and subtitle' do
10
- PageHeader.new('Page Title', 'Subtitle').to_s.should eq '<div class="page-header"><h1>Page Title<small>&nbsp;&nbsp;Subtitle</small></h1></div>'
11
- end
12
-
1
+ require 'spec_helper'
2
+
3
+ describe PageHeader do
4
+
5
+ it 'title' do
6
+ PageHeader.new('Page Title').to_s.should eq '<div class="page-header"><h1>Page Title</h1></div>'
7
+ end
8
+
9
+ it 'title and subtitle' do
10
+ PageHeader.new('Page Title', 'Subtitle').to_s.should eq '<div class="page-header"><h1>Page Title<small>&nbsp;&nbsp;Subtitle</small></h1></div>'
11
+ end
12
+
13
13
  end
@@ -1,18 +1,18 @@
1
- require 'spec_helper'
2
-
3
- describe Pagination do
4
-
5
- [:default, :centered, :right].each do |position|
6
- it position do
7
- tag = Pagination.send(position == :default ? :new : position) do
8
- append Tag.new(:a, 'Prev'), :active
9
- append Tag.new(:a, 1), :active
10
- append Link.new(2, '#')
11
- append Link.new('Next', '#')
12
- end
13
-
14
- tag.to_s.should eq HtmlHelper.html_for('paginations', "##{position} .pagination")
15
- end
16
- end
17
-
1
+ require 'spec_helper'
2
+
3
+ describe Pagination do
4
+
5
+ [:default, :centered, :right].each do |position|
6
+ it position do
7
+ tag = Pagination.send(position == :default ? :new : position) do
8
+ append Tag.new(:a, 'Prev'), :active
9
+ append Tag.new(:a, 1), :active
10
+ append Link.new(2, '#')
11
+ append Link.new('Next', '#')
12
+ end
13
+
14
+ tag.to_s.should eq HtmlHelper.html_for('paginations', "##{position} .pagination")
15
+ end
16
+ end
17
+
18
18
  end
@@ -1,15 +1,15 @@
1
- require 'spec_helper'
2
-
3
- describe Popover do
4
-
5
- it 'default' do
6
- Link.new('advanced', '#').popover('Title popover', 'This is a full explanation').to_s.should eq HtmlHelper.html_for('popovers', "#default a")
7
- end
8
-
9
- Tooltip::POSITIONS.reject { |p| p ==:right }.each do |position|
10
- it position do
11
- Link.new('advanced', '#').send("popover_#{position}", 'Title popover', 'This is a full explanation').to_s.should eq HtmlHelper.html_for('popovers', "##{position} a")
12
- end
13
- end
14
-
1
+ require 'spec_helper'
2
+
3
+ describe Popover do
4
+
5
+ it 'default' do
6
+ Link.new('advanced', '#').popover('Title popover', 'This is a full explanation').to_s.should eq HtmlHelper.html_for('popovers', "#default a")
7
+ end
8
+
9
+ Tooltip::POSITIONS.reject { |p| p ==:right }.each do |position|
10
+ it position do
11
+ Link.new('advanced', '#').send("popover_#{position}", 'Title popover', 'This is a full explanation').to_s.should eq HtmlHelper.html_for('popovers', "##{position} a")
12
+ end
13
+ end
14
+
15
15
  end
@@ -1,53 +1,53 @@
1
- require 'spec_helper'
2
-
3
- describe ProgressBar do
4
-
5
- context 'Types' do
6
-
7
- it 'default' do
8
- ProgressBar.new(30).to_s.should eq HtmlHelper.html_for('progress_bars', "#default .progress")
9
- end
10
-
11
- ProgressBar::TYPES.each do |type|
12
- it type do
13
- ProgressBar.new(60).send(type).to_s.should eq HtmlHelper.html_for('progress_bars', "##{type} .progress")
14
- end
15
- end
16
-
17
- end
18
-
19
- context 'Display' do
20
-
21
- it 'striped' do
22
- ProgressBar.new(60).striped.to_s.should eq HtmlHelper.html_for('progress_bars', "#striped .progress")
23
- end
24
-
25
- it 'striped animated' do
26
- ProgressBar.new(60).striped_animated.to_s.should eq HtmlHelper.html_for('progress_bars', "#animated .progress")
27
- end
28
-
29
- it 'mixed' do
30
- ProgressBar.info(60).striped.to_s.should eq HtmlHelper.html_for('progress_bars', "#mixed .progress")
31
- end
32
-
33
- end
34
-
35
- context 'Constructors' do
36
-
37
- ProgressBar::TYPES.each do |type|
38
- it type do
39
- ProgressBar.send(type, 60).to_s.should eq ProgressBar.new(60).send(type).to_s
40
- end
41
-
42
- it "#{type}_striped" do
43
- ProgressBar.send("#{type}_striped", 60).to_s.should eq ProgressBar.new(60).send(type).striped.to_s
44
- end
45
-
46
- it "#{type}_striped_animated" do
47
- ProgressBar.send("#{type}_striped_animated", 60).to_s.should eq ProgressBar.new(60).send(type).striped_animated.to_s
48
- end
49
- end
50
-
51
- end
52
-
1
+ require 'spec_helper'
2
+
3
+ describe ProgressBar do
4
+
5
+ context 'Types' do
6
+
7
+ it 'default' do
8
+ ProgressBar.new(30).to_s.should eq HtmlHelper.html_for('progress_bars', "#default .progress")
9
+ end
10
+
11
+ ProgressBar::TYPES.each do |type|
12
+ it type do
13
+ ProgressBar.new(60).send(type).to_s.should eq HtmlHelper.html_for('progress_bars', "##{type} .progress")
14
+ end
15
+ end
16
+
17
+ end
18
+
19
+ context 'Display' do
20
+
21
+ it 'striped' do
22
+ ProgressBar.new(60).striped.to_s.should eq HtmlHelper.html_for('progress_bars', "#striped .progress")
23
+ end
24
+
25
+ it 'striped animated' do
26
+ ProgressBar.new(60).striped_animated.to_s.should eq HtmlHelper.html_for('progress_bars', "#animated .progress")
27
+ end
28
+
29
+ it 'mixed' do
30
+ ProgressBar.info(60).striped.to_s.should eq HtmlHelper.html_for('progress_bars', "#mixed .progress")
31
+ end
32
+
33
+ end
34
+
35
+ context 'Constructors' do
36
+
37
+ ProgressBar::TYPES.each do |type|
38
+ it type do
39
+ ProgressBar.send(type, 60).to_s.should eq ProgressBar.new(60).send(type).to_s
40
+ end
41
+
42
+ it "#{type}_striped" do
43
+ ProgressBar.send("#{type}_striped", 60).to_s.should eq ProgressBar.new(60).send(type).striped.to_s
44
+ end
45
+
46
+ it "#{type}_striped_animated" do
47
+ ProgressBar.send("#{type}_striped_animated", 60).to_s.should eq ProgressBar.new(60).send(type).striped_animated.to_s
48
+ end
49
+ end
50
+
51
+ end
52
+
53
53
  end
@@ -1,60 +1,60 @@
1
- require 'spec_helper'
2
-
3
- describe Select do
4
-
5
- context 'Options' do
6
-
7
- it 'empty' do
8
- Select.new([], :id => 'empty_select').to_s.should eq HtmlHelper.html_for('selects', "#empty select")
9
- end
10
-
11
- it 'array options' do
12
- Select.new([1, 2], :id => 'array_select').to_s.should eq HtmlHelper.html_for('selects', "#array select")
13
- end
14
-
15
- it 'hash options' do
16
- Select.new({:option1 => 1, :option2 => 2}, :id => 'hash_select').to_s.should eq HtmlHelper.html_for('selects', "#hash select")
17
- end
18
-
19
- it 'hash options group' do
20
- options = {
21
- :group1 => [1, 2],
22
- :group2 => {
23
- :optionA => 'A',
24
- :optionB => 'B'
25
- }
26
- }
27
- Select.new(options, :id => 'group_select').to_s.should eq HtmlHelper.html_for('selects', "#group select")
28
- end
29
-
30
- it 'selected value' do
31
- Select.new([1, 2, 3], :selected_value => 2, :id => 'selected_select').to_s.should eq HtmlHelper.html_for('selects', "#selected select")
32
- end
33
-
34
- it 'prompt' do
35
- Select.new([1, 2], :prompt => '[Select option]', :id => 'prompt_select').to_s.should eq HtmlHelper.html_for('selects', "#prompt select")
36
- end
37
-
38
- end
39
-
40
- context 'Sizes' do
41
-
42
- InputSize::VALUES.each do |size|
43
- it size do
44
- Select.new.send(size).to_s.should eq HtmlHelper.html_for('selects', "##{size} select")
45
- end
46
- end
47
-
48
- end
49
-
50
- context 'Constructors' do
51
-
52
- InputSize::VALUES.each do |size|
53
- it size do
54
- Select.send(size).to_s.should eq Select.new.send(size).to_s
55
- end
56
- end
57
-
58
- end
59
-
1
+ require 'spec_helper'
2
+
3
+ describe Select do
4
+
5
+ context 'Options' do
6
+
7
+ it 'empty' do
8
+ Select.new([], :id => 'empty_select').to_s.should eq HtmlHelper.html_for('selects', "#empty select")
9
+ end
10
+
11
+ it 'array options' do
12
+ Select.new([1, 2], :id => 'array_select').to_s.should eq HtmlHelper.html_for('selects', "#array select")
13
+ end
14
+
15
+ it 'hash options' do
16
+ Select.new({:option1 => 1, :option2 => 2}, :id => 'hash_select').to_s.should eq HtmlHelper.html_for('selects', "#hash select")
17
+ end
18
+
19
+ it 'hash options group' do
20
+ options = {
21
+ :group1 => [1, 2],
22
+ :group2 => {
23
+ :optionA => 'A',
24
+ :optionB => 'B'
25
+ }
26
+ }
27
+ Select.new(options, :id => 'group_select').to_s.should eq HtmlHelper.html_for('selects', "#group select")
28
+ end
29
+
30
+ it 'selected value' do
31
+ Select.new([1, 2, 3], :selected_value => 2, :id => 'selected_select').to_s.should eq HtmlHelper.html_for('selects', "#selected select")
32
+ end
33
+
34
+ it 'prompt' do
35
+ Select.new([1, 2], :prompt => '[Select option]', :id => 'prompt_select').to_s.should eq HtmlHelper.html_for('selects', "#prompt select")
36
+ end
37
+
38
+ end
39
+
40
+ context 'Sizes' do
41
+
42
+ InputSize::VALUES.each do |size|
43
+ it size do
44
+ Select.new.send(size).to_s.should eq HtmlHelper.html_for('selects', "##{size} select")
45
+ end
46
+ end
47
+
48
+ end
49
+
50
+ context 'Constructors' do
51
+
52
+ InputSize::VALUES.each do |size|
53
+ it size do
54
+ Select.send(size).to_s.should eq Select.new.send(size).to_s
55
+ end
56
+ end
57
+
58
+ end
59
+
60
60
  end
@@ -1,12 +1,12 @@
1
- require 'rubygems'
2
- require 'bundler/setup'
3
- require 'twitter_bootstrap_markup'
4
- require 'nokogiri'
5
-
6
- include TwitterBootstrapMarkup
7
-
8
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
-
10
- RSpec.configure do |config|
11
-
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+ require 'twitter_bootstrap_markup'
4
+ require 'nokogiri'
5
+
6
+ include TwitterBootstrapMarkup
7
+
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
12
  end
@@ -1,11 +1,11 @@
1
- class HtmlHelper
2
- def self.load(file_name)
3
- Nokogiri::HTML(File.open("../markup/#{file_name}.html", 'r'){|f| f.readlines.join("\n")})
4
- end
5
-
6
- def self.html_for(file_name, css_path)
7
- load(file_name).css(css_path).to_s.split(/\n/).inject do |result, line|
8
- (result || '') << line.lstrip
9
- end.gsub('&amp;', '&')
10
- end
1
+ class HtmlHelper
2
+ def self.load(file_name)
3
+ Nokogiri::HTML(File.open("../markup/#{file_name}.html", 'r'){|f| f.readlines.join("\n")})
4
+ end
5
+
6
+ def self.html_for(file_name, css_path)
7
+ load(file_name).css(css_path).to_s.split(/\n/).inject do |result, line|
8
+ (result || '') << line.lstrip
9
+ end.gsub('&amp;', '&')
10
+ end
11
11
  end
@@ -1,33 +1,33 @@
1
- require 'spec_helper'
2
-
3
- describe Table do
4
-
5
- context 'Types' do
6
-
7
- it 'default' do
8
- Table.new.to_s.should eq '<table class="table"></table>'
9
- end
10
-
11
- Table::TYPES.each do |type|
12
- it type do
13
- Table.new.send(type).to_s.should eq "<table class=\"table table-#{type}\"></table>"
14
- end
15
- end
16
-
17
- end
18
-
19
- context 'Constructors' do
20
-
21
- Table::TYPES.each do |type|
22
- it type do
23
- Table.send(type).to_s.should eq Table.new.send(type).to_s
24
- end
25
- end
26
-
27
- it 'combined' do
28
- Table.bordered.condensed.striped { append Tag.block(:tr) }.to_s.should eq Table.new { append Tag.block(:tr) }.bordered.condensed.striped.to_s
29
- end
30
-
31
- end
32
-
1
+ require 'spec_helper'
2
+
3
+ describe Table do
4
+
5
+ context 'Types' do
6
+
7
+ it 'default' do
8
+ Table.new.to_s.should eq '<table class="table"></table>'
9
+ end
10
+
11
+ Table::TYPES.each do |type|
12
+ it type do
13
+ Table.new.send(type).to_s.should eq "<table class=\"table table-#{type}\"></table>"
14
+ end
15
+ end
16
+
17
+ end
18
+
19
+ context 'Constructors' do
20
+
21
+ Table::TYPES.each do |type|
22
+ it type do
23
+ Table.send(type).to_s.should eq Table.new.send(type).to_s
24
+ end
25
+ end
26
+
27
+ it 'combined' do
28
+ Table.bordered.condensed.striped { append Tag.block(:tr) }.to_s.should eq Table.new { append Tag.block(:tr) }.bordered.condensed.striped.to_s
29
+ end
30
+
31
+ end
32
+
33
33
  end
@@ -1,22 +1,22 @@
1
- require 'spec_helper'
2
-
3
- describe Tab do
4
-
5
- it 'default' do
6
- tag = Tab.new do
7
- nav.append NavTab.new('Tab 1', '#tab1'), :active
8
- nav.append NavTab.new('Tab 2', '#tab2')
9
- nav.append NavTab.new('#tab3') { append 'Tab 3' }
10
- content.append('tab1', :active) do
11
- Tag.block :i, 'Content for Tab 1'
12
- end
13
- content.append 'tab2', 'Content for Tab 2'
14
- content.append('tab3') do
15
- Tag.block :strong, 'Content for Tab 3'
16
- end
17
- end
18
-
19
- tag.to_s.should eq HtmlHelper.html_for('tabs', "#default .tab")
20
- end
21
-
1
+ require 'spec_helper'
2
+
3
+ describe Tab do
4
+
5
+ it 'default' do
6
+ tag = Tab.new do
7
+ nav.append NavTab.new('Tab 1', '#tab1'), :active
8
+ nav.append NavTab.new('Tab 2', '#tab2')
9
+ nav.append NavTab.new('#tab3') { append 'Tab 3' }
10
+ content.append('tab1', :active) do
11
+ Tag.block :i, 'Content for Tab 1'
12
+ end
13
+ content.append 'tab2', 'Content for Tab 2'
14
+ content.append('tab3') do
15
+ Tag.block :strong, 'Content for Tab 3'
16
+ end
17
+ end
18
+
19
+ tag.to_s.should eq HtmlHelper.html_for('tabs', "#default .tab")
20
+ end
21
+
22
22
  end