ui_bibz 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/.gitignore +1 -1
- data/.yardoc/checksums +52 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +11 -21
- data/README.md +359 -239
- data/Rakefile +12 -13
- data/doc/UiBibz/Concerns/Models/Searchable/ClassMethods.html +174 -0
- data/doc/UiBibz/Concerns/Models/Searchable.html +120 -0
- data/doc/UiBibz/Helpers/MetaHelper.html +218 -0
- data/doc/UiBibz/Helpers/UiCoreHelper.html +1130 -0
- data/doc/UiBibz/Helpers/UiUxHelper.html +463 -0
- data/doc/UiBibz/Helpers/UtilsHelper.html +187 -0
- data/doc/UiBibz/Rails/Engine.html +123 -0
- data/doc/UiBibz/Rails.html +115 -0
- data/doc/UiBibz/Ui/Base.html +304 -0
- data/doc/UiBibz/Ui/Core/Alert.html +367 -0
- data/doc/UiBibz/Ui/Core/Bar.html +356 -0
- data/doc/UiBibz/Ui/Core/Breadcrumb.html +427 -0
- data/doc/UiBibz/Ui/Core/BreadcrumbLink.html +354 -0
- data/doc/UiBibz/Ui/Core/Button.html +363 -0
- data/doc/UiBibz/Ui/Core/ButtonDropdown.html +385 -0
- data/doc/UiBibz/Ui/Core/ButtonGroup.html +356 -0
- data/doc/UiBibz/Ui/Core/ButtonLink.html +365 -0
- data/doc/UiBibz/Ui/Core/ButtonSplitDropdown.html +387 -0
- data/doc/UiBibz/Ui/Core/Col.html +357 -0
- data/doc/UiBibz/Ui/Core/Component.html +1144 -0
- data/doc/UiBibz/Ui/Core/Dropdown.html +877 -0
- data/doc/UiBibz/Ui/Core/DropdownList.html +369 -0
- data/doc/UiBibz/Ui/Core/Glyph.html +742 -0
- data/doc/UiBibz/Ui/Core/Jumbotron.html +363 -0
- data/doc/UiBibz/Ui/Core/Label.html +361 -0
- data/doc/UiBibz/Ui/Core/List.html +486 -0
- data/doc/UiBibz/Ui/Core/ListGroup.html +446 -0
- data/doc/UiBibz/Ui/Core/Nav.html +474 -0
- data/doc/UiBibz/Ui/Core/NavDropdown.html +376 -0
- data/doc/UiBibz/Ui/Core/NavLink.html +347 -0
- data/doc/UiBibz/Ui/Core/Navbar.html +535 -0
- data/doc/UiBibz/Ui/Core/NavbarForm.html +341 -0
- data/doc/UiBibz/Ui/Core/NavbarNav.html +301 -0
- data/doc/UiBibz/Ui/Core/NavbarText.html +341 -0
- data/doc/UiBibz/Ui/Core/Panel.html +806 -0
- data/doc/UiBibz/Ui/Core/ProgressBar.html +433 -0
- data/doc/UiBibz/Ui/Core/Row.html +335 -0
- data/doc/UiBibz/Ui/Core.html +117 -0
- data/doc/UiBibz/Ui/Ux/Actionable.html +478 -0
- data/doc/UiBibz/Ui/Ux/Actions.html +314 -0
- data/doc/UiBibz/Ui/Ux/Column.html +1177 -0
- data/doc/UiBibz/Ui/Ux/Columns.html +312 -0
- data/doc/UiBibz/Ui/Ux/Grid.html +823 -0
- data/doc/UiBibz/Ui/Ux/Paginable.html +368 -0
- data/doc/UiBibz/Ui/Ux/Searchable.html +363 -0
- data/doc/UiBibz/Ui/Ux/Sortable.html +289 -0
- data/doc/UiBibz/Ui/Ux/Store.html +968 -0
- data/doc/UiBibz/Ui/Ux/Table.html +957 -0
- data/doc/UiBibz/Ui/Ux/TableAction.html +309 -0
- data/doc/UiBibz/Ui/Ux/TablePagination.html +319 -0
- data/doc/UiBibz/Ui/Ux/TablePaginationPerPage.html +331 -0
- data/doc/UiBibz/Ui/Ux/TablePanel.html +576 -0
- data/doc/UiBibz/Ui/Ux/TableSearchField.html +291 -0
- data/doc/UiBibz/Ui/Ux.html +117 -0
- data/doc/UiBibz/Ui.html +117 -0
- data/doc/UiBibz/Utils/Internationalization.html +262 -0
- data/doc/UiBibz/Utils.html +115 -0
- data/doc/UiBibz.html +129 -0
- data/doc/_index.html +635 -0
- data/doc/class_list.html +58 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.README.html +1022 -0
- data/doc/file_list.html +60 -0
- data/doc/frames.html +26 -0
- data/doc/images/navbar.png +0 -0
- data/doc/index.html +1022 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +181 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +1335 -0
- data/doc/top-level-namespace.html +112 -0
- data/lib/ui_bibz/helpers/ui_core_helper.rb +94 -0
- data/lib/ui_bibz/helpers/ui_ux_helper.rb +43 -0
- data/lib/ui_bibz/rails/engine.rb +2 -1
- data/lib/ui_bibz/ui/{ui.rb → base.rb} +1 -1
- data/lib/ui_bibz/ui/{alert.rb → core/alert.rb} +15 -7
- data/lib/ui_bibz/ui/core/breadcrumb/breadcrumb.rb +71 -0
- data/lib/ui_bibz/ui/{breadcrumb → core/breadcrumb}/components/breadcrumb_link.rb +6 -6
- data/lib/ui_bibz/ui/{button → core/button}/button.rb +13 -6
- data/lib/ui_bibz/ui/{button → core/button}/button_dropdown.rb +15 -4
- data/lib/ui_bibz/ui/{button → core/button}/button_group.rb +14 -6
- data/lib/ui_bibz/ui/{button → core/button}/button_link.rb +14 -6
- data/lib/ui_bibz/ui/{button → core/button}/button_split_dropdown.rb +15 -4
- data/lib/ui_bibz/ui/{grid/components → core}/col.rb +12 -6
- data/lib/ui_bibz/ui/{component.rb → core/component.rb} +7 -7
- data/lib/ui_bibz/ui/{dropdown → core/dropdown}/components/dropdown_list.rb +7 -7
- data/lib/ui_bibz/ui/{dropdown → core/dropdown}/dropdown.rb +18 -7
- data/lib/ui_bibz/ui/{glyph.rb → core/glyph.rb} +18 -10
- data/lib/ui_bibz/ui/{jumbotron.rb → core/jumbotron.rb} +14 -6
- data/lib/ui_bibz/ui/{label.rb → core/label.rb} +14 -6
- data/lib/ui_bibz/ui/{list → core/list}/components/list.rb +8 -8
- data/lib/ui_bibz/ui/{list → core/list}/list_group.rb +28 -6
- data/lib/ui_bibz/ui/core/nav/components/nav_dropdown.rb +64 -0
- data/lib/ui_bibz/ui/{nav → core/nav}/components/nav_link.rb +6 -6
- data/lib/ui_bibz/ui/core/nav/components/navbar_form.rb +45 -0
- data/lib/ui_bibz/ui/core/nav/components/navbar_nav.rb +56 -0
- data/lib/ui_bibz/ui/core/nav/components/navbar_text.rb +45 -0
- data/lib/ui_bibz/ui/core/nav/nav.rb +90 -0
- data/lib/ui_bibz/ui/core/nav/navbar.rb +121 -0
- data/lib/ui_bibz/ui/{panel.rb → core/panel.rb} +36 -8
- data/lib/ui_bibz/ui/{progress_bar → core/progress_bar}/components/bar.rb +7 -7
- data/lib/ui_bibz/ui/{progress_bar → core/progress_bar}/progress_bar.rb +20 -9
- data/lib/ui_bibz/ui/{grid/components → core}/row.rb +12 -4
- data/lib/ui_bibz/ui/{grid → ux}/grid.rb +17 -8
- data/lib/ui_bibz/ui/{table → ux/table}/components/actions.rb +5 -5
- data/lib/ui_bibz/ui/ux/table/components/column.rb +34 -0
- data/lib/ui_bibz/ui/ux/table/components/columns.rb +16 -0
- data/lib/ui_bibz/ui/{table → ux/table}/components/store.rb +4 -4
- data/lib/ui_bibz/ui/{table → ux/table}/components/table_action.rb +2 -2
- data/lib/ui_bibz/ui/{table/ux → ux/table/extensions}/actionable.rb +3 -3
- data/lib/ui_bibz/ui/{table/ux → ux/table/extensions}/paginable.rb +5 -5
- data/lib/ui_bibz/ui/{table/ux → ux/table/extensions}/searchable.rb +4 -4
- data/lib/ui_bibz/ui/{table/ux → ux/table/extensions}/sortable.rb +3 -3
- data/lib/ui_bibz/ui/{table → ux/table}/table.rb +40 -22
- data/lib/ui_bibz/ui/ux/table/table_pagination.rb +51 -0
- data/lib/ui_bibz/ui/{table → ux/table}/table_pagination_per_page.rb +26 -4
- data/lib/ui_bibz/ui/ux/table/table_panel.rb +155 -0
- data/lib/ui_bibz/ui/{table → ux/table}/table_search_field.rb +7 -7
- data/lib/ui_bibz/version.rb +1 -1
- data/lib/ui_bibz.rb +40 -29
- data/test/store_test.rb +2 -2
- data/test/ui/button_test.rb +6 -6
- data/test/ui/component_test.rb +2 -2
- data/test/ui/dropdown_test.rb +1 -1
- data/test/ui/glyph_test.rb +3 -3
- data/test/ui/grid_test.rb +4 -4
- data/test/ui/list_group_test.rb +2 -2
- data/test/ui/nav_test.rb +3 -4
- data/test/ui/panel_test.rb +4 -4
- data/test/ui/table_test.rb +32 -32
- data/test/ui_helper_test.rb +18 -2
- data/ui_bibz.gemspec +1 -0
- data/vendor/assets/stylesheets/ui_bibz.sass +3 -0
- metadata +166 -132
- data/README.rdoc +0 -0
- data/lib/ui_bibz/helpers/ui_helper.rb +0 -119
- data/lib/ui_bibz/ui/breadcrumb/breadcrumb.rb +0 -54
- data/lib/ui_bibz/ui/nav/nav.rb +0 -65
- data/lib/ui_bibz/ui/table/components/column.rb +0 -34
- data/lib/ui_bibz/ui/table/components/columns.rb +0 -16
- data/lib/ui_bibz/ui/table/table_pagination.rb +0 -29
- data/lib/ui_bibz/ui/table/table_panel.rb +0 -66
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZTBkN2Q3ZDU4MzYzYjA0MGU5MDQzYzIwYjk4MmMxNjA4NzM0MmZjYg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MTdlZWExYjQwODE0NTAyNGMzN2YyOWQ1ZjU1MTExNjg3ZjAwODRmMQ==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
N2YzMjdjYTZmNDg4MTk4N2Q3ZWNlN2U5ZTk2MmExYWU1NDE5N2FjMGQ5ZGEz
|
10
|
+
MDNiMTU4MGU0M2U4ZmRjMmRiM2VjYjRiYzI5NTI1YjI1N2FhOTk5NzU5NzBk
|
11
|
+
ODhjMWFhYzM2MTA0OTFlYTIyYjM4ODU2N2I0NGY0Yzk5YWM3OGU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OGVlNzQxMDQzOWMzNWYxNTBjNzQ1MWVhMzJlMzM2NDEwNTkyZTU0ZGQ5MWY5
|
14
|
+
ZTkwNDQ3ZDY0NDYxYTExYjAyZjAzM2Q3MTVkNGQzZTNjZDgxYTJlNDgwYmQy
|
15
|
+
N2EzOWUxZDU4ZGY0ZGMyZWNlMTFhODczZDI0ZTNhNzkzZmZkNTI=
|
data/.gitignore
CHANGED
data/.yardoc/checksums
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
lib/ui_bibz/ui/base.rb a0840e2ee2d49117ac28b51dc89d3d724cfb6747
|
2
|
+
lib/ui_bibz/version.rb 119af7b5afd9493d6047bfd9c35bee106c0d464b
|
3
|
+
lib/ui_bibz/ui/ux/grid.rb 3ba518e5e80a8bb9199c7689cc00c61d5927c7db
|
4
|
+
lib/ui_bibz/ui/core/col.rb e785a1f15cc0bc435de23e26060a0ee6fa04915b
|
5
|
+
lib/ui_bibz/ui/core/row.rb 7d969d93d01a3266832e27b12e66d76a4cfe2081
|
6
|
+
lib/ui_bibz/rails/engine.rb 0720bf9cc7da2f36de5e2212a590b58ec19d31a8
|
7
|
+
lib/ui_bibz/ui/core/alert.rb 73f335cabfbfecc18a2c8056e16f455f6bcf14ae
|
8
|
+
lib/ui_bibz/ui/core/label.rb dd6364210f8bf21fbbb89b2482aaca003d2c918d
|
9
|
+
lib/ui_bibz/ui/core/panel.rb 7060036f210af97bb6e6f2600644fc122ddb9a14
|
10
|
+
lib/ui_bibz/ui/core/glyph.rb 6fcb7295a4550652f3673a87a36cc14c5edaf636
|
11
|
+
lib/ui_bibz/ui/core/nav/nav.rb deddcd65034ac278fceb936b803f49a919d623dd
|
12
|
+
lib/ui_bibz/ui/core/component.rb 3837a11285b79350e69d471dddc35096063ce7f6
|
13
|
+
lib/ui_bibz/ui/ux/table/table.rb 1d7d45c6c34220c43cec8e1734d064d61b003c99
|
14
|
+
lib/ui_bibz/ui/core/jumbotron.rb 5537a01765f5fec9f54a800b12733cbfdf9239d5
|
15
|
+
lib/ui_bibz/ui/core/nav/navbar.rb 86c415bb59b6a076ba7a6d2cce9a5cd27e358178
|
16
|
+
lib/ui_bibz/helpers/meta_helper.rb be59b6a682b3cedf5d266ae99e34f3ea1a698fd4
|
17
|
+
lib/ui_bibz/helpers/ui_ux_helper.rb b47a87a3133385d921951d86f1344c155faa942f
|
18
|
+
lib/ui_bibz/helpers/utils_helper.rb 53d9372821f8c1b29ea1e180d58995685b230153
|
19
|
+
lib/ui_bibz/ui/core/button/button.rb be028b891b10c82e81e377d495aa86b61d85a000
|
20
|
+
lib/ui_bibz/helpers/ui_core_helper.rb 90e4df97a1d5604612966ca4b4505fde18dd0592
|
21
|
+
lib/ui_bibz/ui/ux/table/table_panel.rb 9a0ee74f1ae7d36f5735b6f0c15ad26164ed24ff
|
22
|
+
lib/ui_bibz/ui/core/list/list_group.rb 2bd2be6bf9a0f7fdc2a7da0a925de96a09a1594e
|
23
|
+
lib/ui_bibz/ui/core/dropdown/dropdown.rb 8e7873166130519114caaa6eafc869988dde2b2c
|
24
|
+
lib/ui_bibz/ui/core/button/button_link.rb 57e4258e969d0fb6c98880d47ece3ac845a952a9
|
25
|
+
lib/ui_bibz/utils/internationalization.rb 247008bccd7b820cd534082a846a29e5de0063dc
|
26
|
+
lib/ui_bibz/concerns/models/searchable.rb 5083b9ac3001c04242f5330c0c545e9d6d1f6fa9
|
27
|
+
lib/ui_bibz/ui/core/button/button_group.rb b48cd733b8821911ab9a9fdb6d44f6d4c705cbe7
|
28
|
+
lib/ui_bibz/ui/ux/table/components/store.rb ad830c830a2b18d0689bf75e59ed048d0558bea7
|
29
|
+
lib/ui_bibz/ui/ux/table/table_pagination.rb a2c9ce7212fa79dfde1c1a4410a08914840d9b24
|
30
|
+
lib/ui_bibz/ui/core/list/components/list.rb 2ae67552998e1084b569d5e14d3577fa6a457780
|
31
|
+
lib/ui_bibz/ui/ux/table/components/column.rb b15d94b8de713eabc99f008fadcc473732e003b5
|
32
|
+
lib/ui_bibz/ui/core/breadcrumb/breadcrumb.rb 401c48541ea4788cf08bb742666226b02a0fa818
|
33
|
+
lib/ui_bibz/ui/core/button/button_dropdown.rb 49b49e55eb472d47fd883ddc8373c28a31c8a7a9
|
34
|
+
lib/ui_bibz/ui/ux/table/components/columns.rb 2698c4a721ba1e211d68e93eb35c3a1982b6f634
|
35
|
+
lib/ui_bibz/ui/ux/table/components/actions.rb 33403d2f903c60f9d1fbd89fd5e744dc27b39dcb
|
36
|
+
lib/ui_bibz/ui/ux/table/table_search_field.rb cba2cd83b814af857093f26d91227077a0a5e538
|
37
|
+
lib/ui_bibz/ui/ux/table/extensions/sortable.rb 5f1504a281a5c5e507dc4b08e61d3b0311cb32a2
|
38
|
+
lib/ui_bibz/ui/core/nav/components/nav_link.rb 1ea8d1b23f32bd6123bd86a72839e55f86722664
|
39
|
+
lib/ui_bibz/ui/ux/table/extensions/paginable.rb 20cf33c82fce82f25dccc3ae5e14f997ebab1006
|
40
|
+
lib/ui_bibz/ui/core/nav/components/navbar_nav.rb 9e2c16c40cb8ddad0826dc88555c67c473f3604d
|
41
|
+
lib/ui_bibz/ui/ux/table/extensions/actionable.rb f997e9bdbdee67f103da04770df2bd1b90a40f5b
|
42
|
+
lib/ui_bibz/ui/core/progress_bar/progress_bar.rb 84b9522d1bacefae5cc87340840343d7eceab57c
|
43
|
+
lib/ui_bibz/ui/ux/table/extensions/searchable.rb 658fccff12bd7020a2f7a19fa2d1ea3188260f08
|
44
|
+
lib/ui_bibz/ui/core/nav/components/navbar_text.rb 8ece3200b77fcb50555abd957736991edb8fd032
|
45
|
+
lib/ui_bibz/ui/core/nav/components/navbar_form.rb 02233a56c110d34af0d217f11218a4bb84d6a387
|
46
|
+
lib/ui_bibz/ui/core/nav/components/nav_dropdown.rb 79a0c598beeb86adc75d789e5def885e209c29fe
|
47
|
+
lib/ui_bibz/ui/ux/table/components/table_action.rb 2bf2979f0650d0d92ed5db957053ce71626dd477
|
48
|
+
lib/ui_bibz/ui/core/progress_bar/components/bar.rb bfb257a0342fab4e146f4b3d2580d11515187103
|
49
|
+
lib/ui_bibz/ui/core/button/button_split_dropdown.rb cf5be519676124e8acf842bcf58f8fb706ec24a6
|
50
|
+
lib/ui_bibz/ui/ux/table/table_pagination_per_page.rb 81157be157cff85418480025de5a390c1680cfd9
|
51
|
+
lib/ui_bibz/ui/core/dropdown/components/dropdown_list.rb 8b538ed2f466701fc28407374117af8d1edc0b5e
|
52
|
+
lib/ui_bibz/ui/core/breadcrumb/components/breadcrumb_link.rb eea1b23d2ac8d9a23f3b404e8f3375dddec29f0f
|
Binary file
|
Binary file
|
data/.yardoc/proxy_types
ADDED
Binary file
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ui_bibz (1.
|
4
|
+
ui_bibz (1.1.0)
|
5
5
|
haml
|
6
6
|
haml-rails
|
7
7
|
rails (~> 4.2.0)
|
@@ -51,14 +51,8 @@ GEM
|
|
51
51
|
arel (6.0.0)
|
52
52
|
awesome_print (1.6.1)
|
53
53
|
builder (3.2.2)
|
54
|
-
byebug (3.5.1)
|
55
|
-
columnize (~> 0.8)
|
56
|
-
debugger-linecache (~> 1.2)
|
57
|
-
slop (~> 3.6)
|
58
54
|
codeclimate-test-reporter (0.4.6)
|
59
55
|
simplecov (>= 0.7.1, < 1.0.0)
|
60
|
-
columnize (0.9.0)
|
61
|
-
debugger-linecache (1.2.0)
|
62
56
|
docile (1.1.5)
|
63
57
|
erubis (2.7.0)
|
64
58
|
factory_girl (4.5.0)
|
@@ -66,7 +60,7 @@ GEM
|
|
66
60
|
factory_girl_rails (4.5.0)
|
67
61
|
factory_girl (~> 4.5.0)
|
68
62
|
railties (>= 3.0.0)
|
69
|
-
globalid (0.3.
|
63
|
+
globalid (0.3.5)
|
70
64
|
activesupport (>= 4.1.0)
|
71
65
|
haml (4.0.6)
|
72
66
|
tilt
|
@@ -76,7 +70,6 @@ GEM
|
|
76
70
|
haml (>= 4.0.6, < 5.0)
|
77
71
|
html2haml (>= 1.0.1)
|
78
72
|
railties (>= 4.0.1)
|
79
|
-
hike (1.2.3)
|
80
73
|
html2haml (2.0.0)
|
81
74
|
erubis (~> 2.7.0)
|
82
75
|
haml (~> 4.0.0)
|
@@ -88,7 +81,7 @@ GEM
|
|
88
81
|
nokogiri (>= 1.5.9)
|
89
82
|
mail (2.6.3)
|
90
83
|
mime-types (>= 1.16, < 3)
|
91
|
-
mime-types (2.
|
84
|
+
mime-types (2.5)
|
92
85
|
mini_portile (0.6.2)
|
93
86
|
minitest (5.5.1)
|
94
87
|
multi_json (1.10.1)
|
@@ -122,28 +115,25 @@ GEM
|
|
122
115
|
rake (>= 0.8.7)
|
123
116
|
thor (>= 0.18.1, < 2.0)
|
124
117
|
rake (10.4.2)
|
125
|
-
|
118
|
+
rdoc (4.2.0)
|
119
|
+
ruby_parser (3.6.6)
|
126
120
|
sexp_processor (~> 4.1)
|
127
|
-
sass (3.4.
|
128
|
-
sass-rails (5.0.
|
121
|
+
sass (3.4.14)
|
122
|
+
sass-rails (5.0.3)
|
129
123
|
railties (>= 4.0.0, < 5.0)
|
130
124
|
sass (~> 3.1)
|
131
125
|
sprockets (>= 2.8, < 4.0)
|
132
126
|
sprockets-rails (>= 2.0, < 4.0)
|
133
127
|
tilt (~> 1.1)
|
134
|
-
sexp_processor (4.5.
|
128
|
+
sexp_processor (4.5.1)
|
135
129
|
simplecov (0.9.1)
|
136
130
|
docile (~> 1.1.0)
|
137
131
|
multi_json (~> 1.0)
|
138
132
|
simplecov-html (~> 0.8.0)
|
139
133
|
simplecov-html (0.8.0)
|
140
|
-
|
141
|
-
sprockets (2.12.3)
|
142
|
-
hike (~> 1.2)
|
143
|
-
multi_json (~> 1.0)
|
134
|
+
sprockets (3.1.0)
|
144
135
|
rack (~> 1.0)
|
145
|
-
|
146
|
-
sprockets-rails (2.2.4)
|
136
|
+
sprockets-rails (2.3.1)
|
147
137
|
actionpack (>= 3.0)
|
148
138
|
activesupport (>= 3.0)
|
149
139
|
sprockets (>= 2.8, < 4.0)
|
@@ -163,9 +153,9 @@ PLATFORMS
|
|
163
153
|
|
164
154
|
DEPENDENCIES
|
165
155
|
awesome_print
|
166
|
-
byebug
|
167
156
|
codeclimate-test-reporter
|
168
157
|
factory_girl_rails (~> 4.0)
|
169
158
|
minitest
|
159
|
+
rdoc
|
170
160
|
sqlite3
|
171
161
|
ui_bibz!
|