admin_data 1.1.16 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,14 +1,90 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- admin_data (1.1.16)
4
+ admin_data (1.2.0)
5
+ rails (~> 3.1)
5
6
  will_paginate (>= 3.0.0)
6
7
 
7
8
  GEM
8
9
  remote: http://rubygems.org/
9
10
  specs:
11
+ actionmailer (3.2.2)
12
+ actionpack (= 3.2.2)
13
+ mail (~> 2.4.0)
14
+ actionpack (3.2.2)
15
+ activemodel (= 3.2.2)
16
+ activesupport (= 3.2.2)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.1)
20
+ rack (~> 1.4.0)
21
+ rack-cache (~> 1.1)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.1.2)
24
+ activemodel (3.2.2)
25
+ activesupport (= 3.2.2)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.2)
28
+ activemodel (= 3.2.2)
29
+ activesupport (= 3.2.2)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.2)
33
+ activemodel (= 3.2.2)
34
+ activesupport (= 3.2.2)
35
+ activesupport (3.2.2)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ arel (3.0.2)
39
+ builder (3.0.0)
40
+ erubis (2.7.0)
41
+ hike (1.2.1)
42
+ i18n (0.6.0)
43
+ journey (1.0.3)
44
+ json (1.6.5)
45
+ mail (2.4.3)
46
+ i18n (>= 0.4.0)
47
+ mime-types (~> 1.16)
48
+ treetop (~> 1.4.8)
49
+ mime-types (1.17.2)
50
+ multi_json (1.1.0)
51
+ polyglot (0.3.3)
52
+ rack (1.4.1)
53
+ rack-cache (1.2)
54
+ rack (>= 0.4)
55
+ rack-ssl (1.3.2)
56
+ rack
57
+ rack-test (0.6.1)
58
+ rack (>= 1.0)
59
+ rails (3.2.2)
60
+ actionmailer (= 3.2.2)
61
+ actionpack (= 3.2.2)
62
+ activerecord (= 3.2.2)
63
+ activeresource (= 3.2.2)
64
+ activesupport (= 3.2.2)
65
+ bundler (~> 1.0)
66
+ railties (= 3.2.2)
67
+ railties (3.2.2)
68
+ actionpack (= 3.2.2)
69
+ activesupport (= 3.2.2)
70
+ rack-ssl (~> 1.3.2)
71
+ rake (>= 0.8.7)
72
+ rdoc (~> 3.4)
73
+ thor (~> 0.14.6)
10
74
  rake (0.8.7)
11
- will_paginate (3.0.2)
75
+ rdoc (3.12)
76
+ json (~> 1.4)
77
+ sprockets (2.1.2)
78
+ hike (~> 1.2)
79
+ rack (~> 1.0)
80
+ tilt (~> 1.1, != 1.3.0)
81
+ thor (0.14.6)
82
+ tilt (1.3.3)
83
+ treetop (1.4.10)
84
+ polyglot
85
+ polyglot (>= 0.3.1)
86
+ tzinfo (0.3.32)
87
+ will_paginate (3.0.3)
12
88
 
13
89
  PLATFORMS
14
90
  ruby
data/README.md CHANGED
@@ -20,11 +20,18 @@ Before deploying the code to production execute
20
20
 
21
21
  bundle exec rake assets:precompile
22
22
 
23
+ ## Live Demo
23
24
 
24
25
  Live demo is available at http://admin-data-demo.heroku.com/admin_data (read only version)
25
26
 
27
+ ## Docs
28
+
26
29
  Documentation is available at https://github.com/bigbinary/admin_data/wiki
27
30
 
31
+ ## Tests
32
+
28
33
  To execute tests for this gem <tt>cd test/rails_root</tt> and read the instructions mentioned at README.md there.
29
34
 
35
+ ## License
36
+
30
37
  Released under [MIT](http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt) License
@@ -20,4 +20,5 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
 
22
22
  s.add_dependency("will_paginate", ">= 3.0.0")
23
+ s.add_dependency("rails", "~> 3.1")
23
24
  end
@@ -1,8 +1,8 @@
1
1
  module AdminData
2
2
  class Engine < Rails::Engine
3
3
 
4
- initializer "admin_data.setup" do
5
- #
4
+ initializer "admin_data precompile hook" do |app|
5
+ app.config.assets.precompile += ['admin_data.js', 'admin_data.css']
6
6
  end
7
7
 
8
8
  rake_tasks do
@@ -1,3 +1,3 @@
1
1
  module AdminData
2
- VERSION = '1.1.16'
2
+ VERSION = '1.2.0'
3
3
  end
metadata CHANGED
@@ -1,39 +1,45 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: admin_data
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0
4
5
  prerelease:
5
- version: 1.1.16
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Neeraj Singh
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2011-11-03 00:00:00 -04:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
12
+ date: 2012-03-15 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
17
15
  name: will_paginate
18
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &70354665761700 !ruby/object:Gem::Requirement
19
17
  none: false
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
23
21
  version: 3.0.0
24
22
  type: :runtime
25
23
  prerelease: false
26
- version_requirements: *id001
24
+ version_requirements: *70354665761700
25
+ - !ruby/object:Gem::Dependency
26
+ name: rails
27
+ requirement: &70354665761180 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: '3.1'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *70354665761180
27
36
  description: Manage data as if you own it
28
- email:
37
+ email:
29
38
  - neeraj@BigBinary.com
30
39
  executables: []
31
-
32
40
  extensions: []
33
-
34
41
  extra_rdoc_files: []
35
-
36
- files:
42
+ files:
37
43
  - .gitignore
38
44
  - CHANGELOG.rdoc
39
45
  - Gemfile
@@ -202,41 +208,37 @@ files:
202
208
  - test/rails_root/test/test_helper.rb
203
209
  - test/rails_root/test/unit/car_test.rb
204
210
  - test/rails_root/test/unit/user_phone_test.rb
205
- has_rdoc: true
206
- homepage: ""
211
+ homepage: ''
207
212
  licenses: []
208
-
209
213
  post_install_message:
210
214
  rdoc_options: []
211
-
212
- require_paths:
215
+ require_paths:
213
216
  - lib
214
- required_ruby_version: !ruby/object:Gem::Requirement
217
+ required_ruby_version: !ruby/object:Gem::Requirement
215
218
  none: false
216
- requirements:
217
- - - ">="
218
- - !ruby/object:Gem::Version
219
- hash: -199132812590787471
220
- segments:
219
+ requirements:
220
+ - - ! '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ segments:
221
224
  - 0
222
- version: "0"
223
- required_rubygems_version: !ruby/object:Gem::Requirement
225
+ hash: 2871161530178594089
226
+ required_rubygems_version: !ruby/object:Gem::Requirement
224
227
  none: false
225
- requirements:
226
- - - ">="
227
- - !ruby/object:Gem::Version
228
- hash: -199132812590787471
229
- segments:
228
+ requirements:
229
+ - - ! '>='
230
+ - !ruby/object:Gem::Version
231
+ version: '0'
232
+ segments:
230
233
  - 0
231
- version: "0"
234
+ hash: 2871161530178594089
232
235
  requirements: []
233
-
234
236
  rubyforge_project: admin_data
235
- rubygems_version: 1.6.2
237
+ rubygems_version: 1.8.15
236
238
  signing_key:
237
239
  specification_version: 3
238
240
  summary: Manage data as if you own it
239
- test_files:
241
+ test_files:
240
242
  - test/rails_root/Gemfile
241
243
  - test/rails_root/Gemfile.lock
242
244
  - test/rails_root/README.md