Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit 7045efa

Browse files
committed
Add the Active Admin gem.
1 parent 6d24aba commit 7045efa

11 files changed

+34
-0
lines changed

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ gem 'compass', '~>0.12.alpha'
2222
# Use devise as our authentication engine.
2323
gem 'devise'
2424

25+
# Use activeadmin for our administrative pages.
26+
gem 'activeadmin'
27+
gem 'meta_search', '>= 1.1.0.pre'
28+
2529
# Use rails_code_qa for test coverage reports.
2630
gem 'rails_code_qa'
2731

Gemfile.lock

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ GEM
1515
rack-mount (~> 0.8.2)
1616
rack-test (~> 0.6.1)
1717
sprockets (~> 2.0.3)
18+
activeadmin (0.3.4)
19+
devise (>= 1.1.2)
20+
fastercsv
21+
formtastic (< 2.0.0)
22+
inherited_resources (< 1.3.0)
23+
kaminari (>= 0.12.4)
24+
meta_search (>= 0.9.2)
25+
rails (>= 3.0.0)
26+
sass (>= 3.1.0)
1827
activemodel (3.1.3)
1928
activesupport (= 3.1.3)
2029
builder (~> 3.0.0)
@@ -63,35 +72,53 @@ GEM
6372
factory_girl_rails (1.4.0)
6473
factory_girl (~> 2.3.0)
6574
railties (>= 3.0.0)
75+
fastercsv (1.5.4)
6676
ffi (1.0.11)
6777
flay (1.4.2)
6878
ruby_parser (~> 2.0)
6979
sexp_processor (~> 3.0)
7080
flog (2.5.1)
7181
ruby_parser (~> 2.0)
7282
sexp_processor (~> 3.0)
83+
formtastic (1.2.4)
84+
actionpack (>= 2.3.7)
85+
activesupport (>= 2.3.7)
86+
i18n (~> 0.4)
7387
fssm (0.2.7)
7488
guard (0.8.8)
7589
thor (~> 0.14.6)
7690
guard-rspec (0.5.9)
7791
guard (>= 0.8.4)
7892
haml (3.1.4)
93+
has_scope (0.5.1)
7994
hike (1.2.1)
8095
i18n (0.6.0)
96+
inherited_resources (1.2.2)
97+
has_scope (~> 0.5.0)
98+
responders (~> 0.6.0)
8199
jquery-rails (1.0.19)
82100
railties (~> 3.0)
83101
thor (~> 0.14)
84102
json (1.6.3)
103+
kaminari (0.12.4)
104+
rails (>= 3.0.0)
85105
libv8 (3.3.10.4)
86106
mail (2.3.0)
87107
i18n (>= 0.4.0)
88108
mime-types (~> 1.16)
89109
treetop (~> 1.4.8)
110+
meta_search (1.1.1)
111+
actionpack (~> 3.1.0)
112+
activerecord (~> 3.1.0)
113+
activesupport (~> 3.1.0)
114+
polyamorous (~> 0.5.0)
90115
mime-types (1.17.2)
91116
multi_json (1.0.4)
92117
mysql2 (0.3.11)
93118
nokogiri (1.5.0)
94119
orm_adapter (0.0.5)
120+
polyamorous (0.5.0)
121+
activerecord (~> 3.0)
95122
polyglot (0.3.3)
96123
rack (1.3.5)
97124
rack-cache (1.1)
@@ -126,6 +153,7 @@ GEM
126153
rcov (0.9.9)
127154
rdoc (3.12)
128155
json (~> 1.4)
156+
responders (0.6.4)
129157
rspec (2.7.0)
130158
rspec-core (~> 2.7.0)
131159
rspec-expectations (~> 2.7.0)
@@ -183,6 +211,7 @@ PLATFORMS
183211
ruby
184212

185213
DEPENDENCIES
214+
activeadmin
186215
capybara
187216
coffee-script
188217
compass (~> 0.12.alpha)
@@ -191,6 +220,7 @@ DEPENDENCIES
191220
guard-rspec
192221
haml
193222
jquery-rails
223+
meta_search (>= 1.1.0.pre)
194224
mysql2
195225
rails (= 3.1.3)
196226
rails_code_qa

vendor/cache/activeadmin-0.3.4.gem

228 KB
Binary file not shown.

vendor/cache/fastercsv-1.5.4.gem

123 KB
Binary file not shown.

vendor/cache/formtastic-1.2.4.gem

40.5 KB
Binary file not shown.

vendor/cache/has_scope-0.5.1.gem

9.5 KB
Binary file not shown.
38 KB
Binary file not shown.

vendor/cache/kaminari-0.12.4.gem

24.5 KB
Binary file not shown.

vendor/cache/meta_search-1.1.1.gem

39.5 KB
Binary file not shown.

vendor/cache/polyamorous-0.5.0.gem

8.5 KB
Binary file not shown.

vendor/cache/responders-0.6.4.gem

13.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)