rails_admin 0.4.4 → 0.4.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rails_admin might be problematic. Click here for more details.
- data.tar.gz.sig +2 -1
- data/Gemfile +37 -29
- data/README.md +7 -31
- data/app/assets/javascripts/rails_admin/ra.widgets.coffee +1 -5
- data/app/helpers/rails_admin/application_helper.rb +1 -1
- data/lib/rails_admin/config/actions/base.rb +5 -0
- data/lib/rails_admin/config/actions/show_in_app.rb +4 -0
- data/lib/rails_admin/config/model.rb +1 -1
- data/lib/rails_admin/version.rb +1 -1
- data/spec/dummy_app/Gemfile +25 -16
- data/spec/dummy_app/Gemfile.lock +212 -0
- data/spec/dummy_app/db/test.sqlite3 +0 -0
- data/spec/dummy_app/log/test.log +20070 -0
- metadata +89 -89
- metadata.gz.sig +0 -0
- data/spec/ci.sh +0 -2
data.tar.gz.sig
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
4�b��(��C1$aCH�k�`��Zm&�v�BQ�'�M*���FQ��*����j,����SMZ:l�&��t��.
|
2
|
+
�,��)�1�w%x��[���3�� K�=N�D��d� j����&,�'W`�;�&�f���`<��% �qsm�u�}Վ��l��h&A8k2#J,,7�ŗ�f�^�D#:���X��'D�`/#�3�l(*k�,��qn��
|
data/Gemfile
CHANGED
@@ -1,51 +1,59 @@
|
|
1
|
-
source
|
1
|
+
source 'https://rubygems.org'
|
2
2
|
|
3
3
|
group :active_record do
|
4
4
|
platforms :jruby do
|
5
|
-
|
6
|
-
|
5
|
+
case ENV['CI_DB_ADAPTER']
|
6
|
+
when 'mysql'
|
7
|
+
gem 'activerecord-jdbcmysql-adapter', '>= 1.2'
|
8
|
+
gem 'jdbc-mysql', '>= 5.1'
|
9
|
+
when 'postgresql'
|
10
|
+
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2'
|
11
|
+
gem 'jdbc-postgres', '>= 9.2'
|
12
|
+
else
|
13
|
+
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2'
|
14
|
+
gem 'jdbc-sqlite3', '>= 3.7'
|
15
|
+
end
|
7
16
|
end
|
8
17
|
|
9
18
|
platforms :ruby, :mswin, :mingw do
|
10
19
|
case ENV['CI_DB_ADAPTER']
|
11
20
|
when 'mysql'
|
12
|
-
gem 'mysql', '2.8.1'
|
21
|
+
gem 'mysql', '~> 2.8.1'
|
13
22
|
when 'postgresql'
|
14
|
-
gem 'pg', '
|
23
|
+
gem 'pg', '>= 0.14'
|
15
24
|
else
|
16
|
-
gem 'sqlite3', '
|
25
|
+
gem 'sqlite3', '>= 1.3'
|
17
26
|
end
|
18
27
|
end
|
19
28
|
end
|
20
29
|
|
21
30
|
group :mongoid do
|
22
|
-
gem 'mongoid', '
|
23
|
-
gem 'mongoid-paperclip', '
|
24
|
-
gem 'carrierwave-mongoid', '
|
31
|
+
gem 'mongoid', '>= 3.0'
|
32
|
+
gem 'mongoid-paperclip', '>= 0.0.8', :require => 'mongoid_paperclip'
|
33
|
+
gem 'carrierwave-mongoid', '>= 0.4', :require => 'carrierwave/mongoid'
|
25
34
|
end
|
26
35
|
|
27
|
-
group :
|
28
|
-
|
29
|
-
|
30
|
-
gem 'simplecov', '~> 0.6', :require => false
|
31
|
-
end
|
36
|
+
group :development do
|
37
|
+
gem 'pry', '>= 0.9'
|
38
|
+
gem 'pry-debugger', '>= 0.2', :platforms => :mri_19
|
32
39
|
end
|
33
40
|
|
34
|
-
group :
|
35
|
-
gem '
|
36
|
-
gem '
|
37
|
-
gem '
|
38
|
-
gem '
|
39
|
-
gem '
|
40
|
-
gem '
|
41
|
-
gem '
|
42
|
-
gem '
|
43
|
-
gem '
|
44
|
-
gem '
|
45
|
-
gem '
|
46
|
-
gem '
|
47
|
-
gem '
|
48
|
-
gem '
|
41
|
+
group :test do
|
42
|
+
gem 'cancan', '>= 1.6'
|
43
|
+
gem 'capybara', '>= 2.0'
|
44
|
+
gem 'carrierwave', '>= 0.8'
|
45
|
+
gem 'database_cleaner', '>= 0.8'
|
46
|
+
gem 'devise', '>= 2.1'
|
47
|
+
gem 'dragonfly', '>= 0.9'
|
48
|
+
gem 'factory_girl', '>= 4.2'
|
49
|
+
gem 'generator_spec', '>= 0.8'
|
50
|
+
gem 'launchy', '>= 2.2'
|
51
|
+
gem 'mini_magick', '>= 3.4'
|
52
|
+
gem 'paperclip', '>= 3.4'
|
53
|
+
gem 'rspec-rails', '>= 2.11'
|
54
|
+
gem 'simplecov', :require => false
|
55
|
+
gem 'strong_parameters', '>= 0.1.6'
|
56
|
+
gem 'timecop', '>= 0.5'
|
49
57
|
end
|
50
58
|
|
51
59
|
gemspec
|
data/README.md
CHANGED
@@ -2,12 +2,10 @@
|
|
2
2
|
[![Gem Version](https://badge.fury.io/rb/rails_admin.png)][gem]
|
3
3
|
[![Build Status](https://secure.travis-ci.org/sferik/rails_admin.png?branch=master)][travis]
|
4
4
|
[![Dependency Status](https://gemnasium.com/sferik/rails_admin.png?travis)][gemnasium]
|
5
|
-
[![Code Climate](https://codeclimate.com/
|
5
|
+
[![Code Climate](https://codeclimate.com/github/sferik/rails_admin.png)][codeclimate]
|
6
6
|
[![Pledgie](http://www.pledgie.com/campaigns/15917.png)][pledgie]
|
7
7
|
[![Flattr](http://api.flattr.com/button/flattr-badge-large.png)][flattr]
|
8
8
|
|
9
|
-
RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.
|
10
|
-
|
11
9
|
[gem]: https://rubygems.org/gems/rails_admin
|
12
10
|
[travis]: http://travis-ci.org/sferik/rails_admin
|
13
11
|
[gemnasium]: https://gemnasium.com/sferik/rails_admin
|
@@ -15,23 +13,10 @@ RailsAdmin is a Rails engine that provides an easy-to-use interface for managing
|
|
15
13
|
[pledgie]: http://www.pledgie.com/campaigns/15917
|
16
14
|
[flattr]: http://flattr.com/thing/799416/sferikrailsadmin-on-GitHub
|
17
15
|
|
18
|
-
|
19
|
-
as a [Ruby Summer of Code project][rubysoc] by [Bogdan Gaza][hurrycane] with
|
20
|
-
mentors [Erik Michaels-Ober][sferik], [Yehuda Katz][wycats], [Luke van der
|
21
|
-
Hoeven][plukevdh], and [Rein Henrichs][reinh].
|
22
|
-
|
23
|
-
[merb-admin]: https://github.com/sferik/merb-admin
|
24
|
-
[rubysoc]: http://www.rubysoc.org/projects
|
25
|
-
[hurrycane]: https://github.com/hurrycane
|
26
|
-
[sferik]: https://github.com/sferik
|
27
|
-
[wycats]: https://github.com/wycats
|
28
|
-
[plukevdh]: https://github.com/plukevdh
|
29
|
-
[reinh]: https://github.com/reinh
|
16
|
+
RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.
|
30
17
|
|
31
18
|
## Announcements
|
32
|
-
|
33
19
|
### [Action required] Security issue
|
34
|
-
|
35
20
|
`RailsAdmin::Config::Fields::Types::Serialized#parse_input` was unsafe, because it was using the infamous `YAML#load`.
|
36
21
|
|
37
22
|
To fix this, RailsAdmin now uses [safe_yaml](https://github.com/dtao/safe_yaml), with `enable_arbitrary_object_deserialization` and `suppress_warnings` on, for maximum compatibity with all existing apps.
|
@@ -44,9 +29,7 @@ Rails3.0 and other non-maintained branches may be at risk too, I strongly advise
|
|
44
29
|
|
45
30
|
More information about the whole drama [here](https://github.com/tenderlove/psych/issues/119).
|
46
31
|
|
47
|
-
|
48
32
|
## Features
|
49
|
-
|
50
33
|
* Display database tables
|
51
34
|
* Create new data
|
52
35
|
* Easily update data
|
@@ -63,14 +46,12 @@ More information about the whole drama [here](https://github.com/tenderlove/psyc
|
|
63
46
|
* Mongoid [new]
|
64
47
|
|
65
48
|
## Demo
|
66
|
-
|
67
49
|
Take RailsAdmin for a [test drive][demo] with sample data. ([Source code.][dummy_app])
|
68
50
|
|
69
51
|
[demo]: http://rails-admin-tb.herokuapp.com/
|
70
52
|
[dummy_app]: https://github.com/bbenezech/dummy_app
|
71
53
|
|
72
54
|
## Installation
|
73
|
-
|
74
55
|
In your `Gemfile`, add the following dependencies:
|
75
56
|
|
76
57
|
gem 'fastercsv' # Only required on Ruby 1.8 and below
|
@@ -78,18 +59,17 @@ In your `Gemfile`, add the following dependencies:
|
|
78
59
|
|
79
60
|
Run:
|
80
61
|
|
81
|
-
|
62
|
+
bundle install
|
82
63
|
|
83
64
|
And then run:
|
84
65
|
|
85
|
-
|
66
|
+
rails g rails_admin:install
|
86
67
|
|
87
68
|
This generator will install RailsAdmin and [Devise](https://github.com/plataformatec/devise) if you
|
88
69
|
don't already have it installed. [Devise](https://github.com/plataformatec/devise) is strongly
|
89
70
|
recommended to protect your data from anonymous users. Note: If you do not already have [Devise](https://github.com/plataformatec/devise)
|
90
71
|
installed, make sure you remove the registerable module from the generated user model.
|
91
72
|
|
92
|
-
|
93
73
|
It will modify your `config/routes.rb`, adding:
|
94
74
|
|
95
75
|
```ruby
|
@@ -114,10 +94,9 @@ See [#715](https://github.com/sferik/rails_admin/issues/715) for more details.
|
|
114
94
|
|
115
95
|
It will also add an intializer that will help you getting started. (head for config/initializers/rails_admin.rb)
|
116
96
|
|
117
|
-
|
118
97
|
Finally run:
|
119
98
|
|
120
|
-
|
99
|
+
bundle exec rake db:migrate
|
121
100
|
|
122
101
|
Optionally, you may wish to set up [Cancan](https://github.com/ryanb/cancan),
|
123
102
|
[PaperTrail](https://github.com/airblade/paper_trail), [CKeditor](https://github.com/galetahub/ckeditor), [CodeMirror](https://github.com/fixlr/codemirror-rails)
|
@@ -125,20 +104,17 @@ Optionally, you may wish to set up [Cancan](https://github.com/ryanb/cancan),
|
|
125
104
|
More on that in the [Wiki](https://github.com/sferik/rails_admin/wiki)
|
126
105
|
|
127
106
|
## Usage
|
128
|
-
|
129
107
|
Start the server:
|
130
108
|
|
131
|
-
|
109
|
+
rails server
|
132
110
|
|
133
111
|
You should now be able to administer your site at
|
134
112
|
[http://localhost:3000/admin](http://localhost:3000/admin).
|
135
113
|
|
136
114
|
## Configuration
|
137
|
-
|
138
115
|
All configuration documentation has moved to the wiki: https://github.com/sferik/rails_admin/wiki
|
139
116
|
|
140
117
|
## Screenshots
|
141
|
-
|
142
118
|
![Dashboard view](https://github.com/sferik/rails_admin/raw/master/screenshots/dashboard.png "dashboard view")
|
143
119
|
![Delete view](https://github.com/sferik/rails_admin/raw/master/screenshots/delete.png "delete view")
|
144
120
|
![List view](https://github.com/sferik/rails_admin/raw/master/screenshots/list.png "list view")
|
@@ -146,7 +122,6 @@ All configuration documentation has moved to the wiki: https://github.com/sferik
|
|
146
122
|
![Polymorphic edit view](https://github.com/sferik/rails_admin/raw/master/screenshots/polymorphic.png "polymorphic view")
|
147
123
|
|
148
124
|
## Support
|
149
|
-
|
150
125
|
If you have a question, please check this README, the wiki, and the [list of
|
151
126
|
known issues][troubleshoot].
|
152
127
|
|
@@ -164,6 +139,7 @@ This library aims to support and is [tested against][travis] the following Ruby
|
|
164
139
|
|
165
140
|
* Ruby 1.9.2
|
166
141
|
* Ruby 1.9.3
|
142
|
+
* Ruby 2.0.0
|
167
143
|
* [Rubinius][]
|
168
144
|
* [JRuby][]
|
169
145
|
|
@@ -150,11 +150,7 @@ $(document).on 'rails_admin.dom_ready', ->
|
|
150
150
|
|
151
151
|
goCkeditors = ->
|
152
152
|
$('form [data-richtext=ckeditor]').not('.ckeditored').each (index, domEle) ->
|
153
|
-
|
154
|
-
if instance = window.CKEDITOR.instances[this.id]
|
155
|
-
instance.destroy(true)
|
156
|
-
|
157
|
-
window.CKEDITOR.replace(this, options['options'])
|
153
|
+
window.CKEDITOR.replace(this, $(this).data['options'])
|
158
154
|
$(this).addClass('ckeditored')
|
159
155
|
|
160
156
|
$editors = $('form [data-richtext=ckeditor]').not('.ckeditored')
|
@@ -118,7 +118,7 @@ module RailsAdmin
|
|
118
118
|
wording = wording_for(:menu, action)
|
119
119
|
%{
|
120
120
|
<li title="#{wording if only_icon}" rel="#{'tooltip' if only_icon}" class="icon #{action.key}_#{parent}_link #{'active' if current_action?(action)}">
|
121
|
-
<a class="#{action.
|
121
|
+
<a class="#{action.pjax? ? 'pjax' : ''}" href="#{url_for({ :action => action.action_name, :controller => 'rails_admin/main', :model_name => abstract_model.try(:to_param), :id => (object.try(:persisted?) && object.try(:id) || nil) })}">
|
122
122
|
<i class="#{action.link_icon}"></i>
|
123
123
|
<span#{only_icon ? " style='display:none'" : ""}>#{wording}</span>
|
124
124
|
</a>
|
@@ -54,6 +54,11 @@ module RailsAdmin
|
|
54
54
|
false
|
55
55
|
end
|
56
56
|
|
57
|
+
# Render via pjax?
|
58
|
+
register_instance_option :pjax? do
|
59
|
+
true
|
60
|
+
end
|
61
|
+
|
57
62
|
# This block is evaluated in the context of the controller when action is called
|
58
63
|
# You can access:
|
59
64
|
# - @objects if you're on a model scope
|
@@ -60,7 +60,7 @@ module RailsAdmin
|
|
60
60
|
end
|
61
61
|
|
62
62
|
register_instance_option :label_plural do
|
63
|
-
(@label_plural ||= {})[::I18n.locale] ||= abstract_model.model.model_name.human(:count =>
|
63
|
+
(@label_plural ||= {})[::I18n.locale] ||= abstract_model.model.model_name.human(:count => 'other', :default => label.pluralize)
|
64
64
|
end
|
65
65
|
|
66
66
|
def pluralize(count)
|
data/lib/rails_admin/version.rb
CHANGED
data/spec/dummy_app/Gemfile
CHANGED
@@ -1,38 +1,47 @@
|
|
1
1
|
source :rubygems
|
2
2
|
|
3
3
|
gem 'rails', '~> 3.2'
|
4
|
-
gem 'strong_parameters'
|
4
|
+
gem 'strong_parameters', '>= 0.1.6'
|
5
5
|
|
6
6
|
group :active_record do
|
7
7
|
platforms :jruby do
|
8
|
-
|
9
|
-
|
8
|
+
case ENV['CI_DB_ADAPTER']
|
9
|
+
when 'mysql'
|
10
|
+
gem 'activerecord-jdbcmysql-adapter', '>= 1.2'
|
11
|
+
gem 'jdbc-mysql', '>= 5.1'
|
12
|
+
when 'postgresql'
|
13
|
+
gem 'activerecord-jdbcpostgresql-adapter', '>= 1.2'
|
14
|
+
gem 'jdbc-postgres', '>= 9.2'
|
15
|
+
else
|
16
|
+
gem 'activerecord-jdbcsqlite3-adapter', '>= 1.2'
|
17
|
+
gem 'jdbc-sqlite3', '>= 3.7'
|
18
|
+
end
|
10
19
|
end
|
11
20
|
|
12
21
|
platforms :ruby, :mswin, :mingw do
|
13
22
|
case ENV['CI_DB_ADAPTER']
|
14
23
|
when 'mysql'
|
15
|
-
gem 'mysql', '2.8.1'
|
24
|
+
gem 'mysql', '~> 2.8.1'
|
16
25
|
when 'postgresql'
|
17
|
-
gem 'pg', '
|
26
|
+
gem 'pg', '>= 0.14'
|
18
27
|
else
|
19
|
-
gem 'sqlite3', '
|
28
|
+
gem 'sqlite3', '>= 1.3'
|
20
29
|
end
|
21
30
|
end
|
22
31
|
end
|
23
32
|
|
24
33
|
group :mongoid do
|
25
|
-
gem 'mongoid', '
|
26
|
-
gem 'mongoid-paperclip', '
|
27
|
-
gem 'carrierwave-mongoid',
|
34
|
+
gem 'mongoid', '>= 3.0'
|
35
|
+
gem 'mongoid-paperclip', '>= 0.0.8', :require => 'mongoid_paperclip'
|
36
|
+
gem 'carrierwave-mongoid', '>= 0.4', :require => 'carrierwave/mongoid'
|
28
37
|
end
|
29
38
|
|
30
|
-
gem 'carrierwave', '
|
31
|
-
gem 'devise', '
|
32
|
-
gem 'dragonfly', '
|
33
|
-
gem 'mini_magick', '
|
34
|
-
gem 'mlb', '
|
35
|
-
gem 'paperclip', '
|
39
|
+
gem 'carrierwave', '>= 0.8'
|
40
|
+
gem 'devise', '>= 2.2'
|
41
|
+
gem 'dragonfly', '>= 0.9'
|
42
|
+
gem 'mini_magick', '>= 3.4'
|
43
|
+
gem 'mlb', '>= 0.6'
|
44
|
+
gem 'paperclip', '>= 3.4'
|
36
45
|
gem 'rails_admin', :path => '../../'
|
37
46
|
|
38
47
|
# Gems used only for assets and not required
|
@@ -44,5 +53,5 @@ group :assets do
|
|
44
53
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
45
54
|
# gem 'therubyracer'
|
46
55
|
|
47
|
-
gem 'uglifier', '>= 1.
|
56
|
+
gem 'uglifier', '>= 1.3'
|
48
57
|
end
|
@@ -0,0 +1,212 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../
|
3
|
+
specs:
|
4
|
+
rails_admin (0.4.4)
|
5
|
+
bootstrap-sass (~> 2.2)
|
6
|
+
builder (~> 3.0)
|
7
|
+
coffee-rails (~> 3.1)
|
8
|
+
font-awesome-sass-rails (~> 3.0, >= 3.0.0.1)
|
9
|
+
haml (~> 3.1)
|
10
|
+
jquery-rails (~> 2.1)
|
11
|
+
jquery-ui-rails (~> 3.0)
|
12
|
+
kaminari (~> 0.14)
|
13
|
+
nested_form (~> 0.3)
|
14
|
+
rack-pjax (~> 0.6)
|
15
|
+
rails (~> 3.1)
|
16
|
+
remotipart (~> 1.0)
|
17
|
+
safe_yaml (~> 0.6)
|
18
|
+
sass-rails (~> 3.1)
|
19
|
+
|
20
|
+
GEM
|
21
|
+
remote: http://rubygems.org/
|
22
|
+
specs:
|
23
|
+
actionmailer (3.2.12)
|
24
|
+
actionpack (= 3.2.12)
|
25
|
+
mail (~> 2.4.4)
|
26
|
+
actionpack (3.2.12)
|
27
|
+
activemodel (= 3.2.12)
|
28
|
+
activesupport (= 3.2.12)
|
29
|
+
builder (~> 3.0.0)
|
30
|
+
erubis (~> 2.7.0)
|
31
|
+
journey (~> 1.0.4)
|
32
|
+
rack (~> 1.4.5)
|
33
|
+
rack-cache (~> 1.2)
|
34
|
+
rack-test (~> 0.6.1)
|
35
|
+
sprockets (~> 2.2.1)
|
36
|
+
activemodel (3.2.12)
|
37
|
+
activesupport (= 3.2.12)
|
38
|
+
builder (~> 3.0.0)
|
39
|
+
activerecord (3.2.12)
|
40
|
+
activemodel (= 3.2.12)
|
41
|
+
activesupport (= 3.2.12)
|
42
|
+
arel (~> 3.0.2)
|
43
|
+
tzinfo (~> 0.3.29)
|
44
|
+
activeresource (3.2.12)
|
45
|
+
activemodel (= 3.2.12)
|
46
|
+
activesupport (= 3.2.12)
|
47
|
+
activesupport (3.2.12)
|
48
|
+
i18n (~> 0.6)
|
49
|
+
multi_json (~> 1.0)
|
50
|
+
arel (3.0.2)
|
51
|
+
bcrypt-ruby (3.0.1)
|
52
|
+
bootstrap-sass (2.2.2.0)
|
53
|
+
sass (~> 3.2)
|
54
|
+
builder (3.0.4)
|
55
|
+
carrierwave (0.8.0)
|
56
|
+
activemodel (>= 3.2.0)
|
57
|
+
activesupport (>= 3.2.0)
|
58
|
+
carrierwave-mongoid (0.4.0)
|
59
|
+
carrierwave (~> 0.8.0)
|
60
|
+
mongoid (~> 3.0)
|
61
|
+
mongoid-grid_fs (~> 1.3)
|
62
|
+
cocaine (0.4.2)
|
63
|
+
coffee-rails (3.2.2)
|
64
|
+
coffee-script (>= 2.2.0)
|
65
|
+
railties (~> 3.2.0)
|
66
|
+
coffee-script (2.2.0)
|
67
|
+
coffee-script-source
|
68
|
+
execjs
|
69
|
+
coffee-script-source (1.4.0)
|
70
|
+
devise (2.2.3)
|
71
|
+
bcrypt-ruby (~> 3.0)
|
72
|
+
orm_adapter (~> 0.1)
|
73
|
+
railties (~> 3.1)
|
74
|
+
warden (~> 1.2.1)
|
75
|
+
dragonfly (0.9.13)
|
76
|
+
multi_json (~> 1.0)
|
77
|
+
rack
|
78
|
+
erubis (2.7.0)
|
79
|
+
execjs (1.4.0)
|
80
|
+
multi_json (~> 1.0)
|
81
|
+
faraday (0.8.5)
|
82
|
+
multipart-post (~> 1.1)
|
83
|
+
font-awesome-sass-rails (3.0.0.1)
|
84
|
+
railties (>= 3.1.1)
|
85
|
+
sass-rails (>= 3.1.1)
|
86
|
+
haml (3.1.7)
|
87
|
+
hike (1.2.1)
|
88
|
+
i18n (0.6.1)
|
89
|
+
journey (1.0.4)
|
90
|
+
jquery-rails (2.2.1)
|
91
|
+
railties (>= 3.0, < 5.0)
|
92
|
+
thor (>= 0.14, < 2.0)
|
93
|
+
jquery-ui-rails (3.0.1)
|
94
|
+
jquery-rails
|
95
|
+
railties (>= 3.1.0)
|
96
|
+
json (1.7.7)
|
97
|
+
kaminari (0.14.1)
|
98
|
+
actionpack (>= 3.0.0)
|
99
|
+
activesupport (>= 3.0.0)
|
100
|
+
mail (2.4.4)
|
101
|
+
i18n (>= 0.4.0)
|
102
|
+
mime-types (~> 1.16)
|
103
|
+
treetop (~> 1.4.8)
|
104
|
+
mime-types (1.21)
|
105
|
+
mini_magick (3.4)
|
106
|
+
subexec (~> 0.2.1)
|
107
|
+
mlb (0.6.3)
|
108
|
+
faraday (~> 0.8, < 0.10)
|
109
|
+
multi_json (~> 1.0)
|
110
|
+
mongoid (3.0.21)
|
111
|
+
activemodel (~> 3.1)
|
112
|
+
moped (~> 1.2)
|
113
|
+
origin (~> 1.0)
|
114
|
+
tzinfo (~> 0.3.22)
|
115
|
+
mongoid-grid_fs (1.7.0)
|
116
|
+
mime-types (~> 1.19)
|
117
|
+
mongoid (~> 3.0)
|
118
|
+
mongoid-paperclip (0.0.8)
|
119
|
+
paperclip (>= 2.3.6)
|
120
|
+
moped (1.4.2)
|
121
|
+
multi_json (1.5.1)
|
122
|
+
multipart-post (1.1.5)
|
123
|
+
nested_form (0.3.1)
|
124
|
+
nokogiri (1.5.6)
|
125
|
+
origin (1.0.11)
|
126
|
+
orm_adapter (0.4.0)
|
127
|
+
paperclip (3.4.0)
|
128
|
+
activemodel (>= 3.0.0)
|
129
|
+
activerecord (>= 3.0.0)
|
130
|
+
activesupport (>= 3.0.0)
|
131
|
+
cocaine (~> 0.4.0)
|
132
|
+
mime-types
|
133
|
+
polyglot (0.3.3)
|
134
|
+
rack (1.4.5)
|
135
|
+
rack-cache (1.2)
|
136
|
+
rack (>= 0.4)
|
137
|
+
rack-pjax (0.7.0)
|
138
|
+
nokogiri (~> 1.5)
|
139
|
+
rack (~> 1.3)
|
140
|
+
rack-ssl (1.3.3)
|
141
|
+
rack
|
142
|
+
rack-test (0.6.2)
|
143
|
+
rack (>= 1.0)
|
144
|
+
rails (3.2.12)
|
145
|
+
actionmailer (= 3.2.12)
|
146
|
+
actionpack (= 3.2.12)
|
147
|
+
activerecord (= 3.2.12)
|
148
|
+
activeresource (= 3.2.12)
|
149
|
+
activesupport (= 3.2.12)
|
150
|
+
bundler (~> 1.0)
|
151
|
+
railties (= 3.2.12)
|
152
|
+
railties (3.2.12)
|
153
|
+
actionpack (= 3.2.12)
|
154
|
+
activesupport (= 3.2.12)
|
155
|
+
rack-ssl (~> 1.3.2)
|
156
|
+
rake (>= 0.8.7)
|
157
|
+
rdoc (~> 3.4)
|
158
|
+
thor (>= 0.14.6, < 2.0)
|
159
|
+
rake (10.0.3)
|
160
|
+
rdoc (3.12.1)
|
161
|
+
json (~> 1.4)
|
162
|
+
remotipart (1.0.5)
|
163
|
+
safe_yaml (0.7.1)
|
164
|
+
sass (3.2.5)
|
165
|
+
sass-rails (3.2.6)
|
166
|
+
railties (~> 3.2.0)
|
167
|
+
sass (>= 3.1.10)
|
168
|
+
tilt (~> 1.3)
|
169
|
+
sprockets (2.2.2)
|
170
|
+
hike (~> 1.2)
|
171
|
+
multi_json (~> 1.0)
|
172
|
+
rack (~> 1.0)
|
173
|
+
tilt (~> 1.1, != 1.3.0)
|
174
|
+
sqlite3 (1.3.7)
|
175
|
+
strong_parameters (0.1.6)
|
176
|
+
actionpack (~> 3.0)
|
177
|
+
activemodel (~> 3.0)
|
178
|
+
railties (~> 3.0)
|
179
|
+
subexec (0.2.2)
|
180
|
+
thor (0.17.0)
|
181
|
+
tilt (1.3.3)
|
182
|
+
treetop (1.4.12)
|
183
|
+
polyglot
|
184
|
+
polyglot (>= 0.3.1)
|
185
|
+
tzinfo (0.3.35)
|
186
|
+
uglifier (1.3.0)
|
187
|
+
execjs (>= 0.3.0)
|
188
|
+
multi_json (~> 1.0, >= 1.0.2)
|
189
|
+
warden (1.2.1)
|
190
|
+
rack (>= 1.0)
|
191
|
+
|
192
|
+
PLATFORMS
|
193
|
+
ruby
|
194
|
+
|
195
|
+
DEPENDENCIES
|
196
|
+
carrierwave
|
197
|
+
carrierwave-mongoid
|
198
|
+
coffee-rails
|
199
|
+
devise
|
200
|
+
dragonfly
|
201
|
+
jdbc-sqlite3
|
202
|
+
mini_magick
|
203
|
+
mlb
|
204
|
+
mongoid
|
205
|
+
mongoid-paperclip
|
206
|
+
paperclip
|
207
|
+
rails (~> 3.2)
|
208
|
+
rails_admin!
|
209
|
+
sass-rails
|
210
|
+
sqlite3
|
211
|
+
strong_parameters
|
212
|
+
uglifier
|