phoenix_dash 0.2.0.beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.md +2 -0
  2. data/phoenix_dash.gemspec +29 -0
  3. metadata +47 -0
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ Dashboard:
2
+ Whows what’s recently been updated.
@@ -0,0 +1,29 @@
1
+ # Encoding: UTF-8
2
+ $:.push File.expand_path('../../core/lib', __FILE__)
3
+ require 'phoenix/version'
4
+
5
+ version = Phoenix::Version.to_s
6
+
7
+ # Describe your gem and declare its dependencies:
8
+ Gem::Specification.new do |s|
9
+ s.platform = Gem::Platform::RUBY
10
+ s.required_ruby_version = '>= 1.9.2'
11
+ s.required_rubygems_version = ">= 1.3.6"
12
+
13
+ s.name = "phoenix_dash"
14
+ s.version = version
15
+ s.summary = 'User dashboard for Phoenix Engine.'
16
+ s.description = 'User dashboard for Phoenix Engine.'
17
+
18
+ s.author = 'Lanvige Jiang'
19
+ s.email = 'lanvige@gmail.com'
20
+ s.homepage = 'http://lanvige.com'
21
+
22
+ # s.files = Dir['{app,config,lib}/**/*'] + ['README.md']
23
+ s.require_path = 'lib'
24
+ s.requirements << 'none'
25
+
26
+ s.files = `git ls-files`.split("\n")
27
+ s.test_files = `git ls-files -- spec/*`.split("\n")
28
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
29
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phoenix_dash
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0.beta
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Lanvige Jiang
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-12-21 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: User dashboard for Phoenix Engine.
15
+ email: lanvige@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - phoenix_dash.gemspec
22
+ homepage: http://lanvige.com
23
+ licenses: []
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 1.9.2
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ! '>'
38
+ - !ruby/object:Gem::Version
39
+ version: 1.3.1
40
+ requirements:
41
+ - none
42
+ rubyforge_project:
43
+ rubygems_version: 1.8.12
44
+ signing_key:
45
+ specification_version: 3
46
+ summary: User dashboard for Phoenix Engine.
47
+ test_files: []