humongous 0.1.0.pre → 0.1.1.pre

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown ADDED
@@ -0,0 +1,78 @@
1
+ # Humongous
2
+
3
+ Humongous: A Ruby way to browse and maintain MongoDB instances, using HTML5.
4
+
5
+ ## Installation
6
+
7
+ create a dependency in your Gemfile
8
+
9
+ gem 'humongous', '0.1.0.pre'
10
+
11
+ then run
12
+
13
+ bundle install
14
+
15
+ and humongous will be up and running. or
16
+
17
+ gem install humongous --pre
18
+
19
+ in IRB
20
+
21
+ just require it by running
22
+
23
+ require 'humongous'
24
+
25
+ and then run
26
+
27
+ Humongous.run!
28
+
29
+ #### Command Line Utility
30
+
31
+ Humongous provides command line utility. Here is example how to use.
32
+
33
+ on console/terminal run
34
+
35
+ humongous
36
+
37
+ | **Options** | **What value do they take** |
38
+ |:----------------------|--------------------------------------------------------------------:|
39
+ | -K or --kill | kill the running process and exit |
40
+ | -S, --status | display the current running PID and URL then quit |
41
+ | -s, --server SERVER | Login credential(required for bitly) |
42
+ | -o, --host HOST | listen on HOST (default: 0.0.0.0) |
43
+ | -p, --port PORT | use PORT (default: 9000) |
44
+ | -x, --no-proxy | ignore env proxy settings (e.g. http_proxy) |
45
+ | -F, --foreground | don't daemonize, run in the foreground |
46
+ | -L, --no-launch | don't launch the browser |
47
+ | -d, --debug | raise the log level to :debug (default: :info) |
48
+ | --app-dir APP_DIR | set the app dir where files are stored("~/.humongous") |
49
+ | -h, --help | Show this message |
50
+
51
+ ## Credits
52
+
53
+ * [MongoHub](http://mongohub.todayclose.com/) (For giving inspiration for simplest UI and navigation.)
54
+
55
+ ## More Info
56
+
57
+ For detailed info visit my blog [http://BagwanPankaj.com](http://bagwanpankaj.com)
58
+
59
+ For more info write me at me[at]bagwanpankaj.com
60
+
61
+ ## TODO's
62
+
63
+ There are lot of things and area to improve and develop. Since it in pre release now, any bug report, issues and feature request is highly appreciated.
64
+
65
+ * Error Handling
66
+ * Authentication module
67
+ * Better UI (need a real contribution here)
68
+ * Better documentation
69
+ * Example series
70
+
71
+ ## Contributing to shortly
72
+
73
+ * Fork, branch, code, and then send me a pull request. :)
74
+
75
+ ## Copyright
76
+
77
+ Copyright (c) 2012 [Bagwan Pankaj]. See LICENSE.txt for further details.
78
+
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0.pre
1
+ 0.1.1.pre
data/bin/humongous CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/../lib')
4
3
  $LOAD_PATH.unshift File.join(File.dirname(__FILE__), *%w[.. lib])
5
4
  begin
6
5
  require 'vegas'
@@ -10,4 +9,12 @@ rescue LoadError
10
9
  end
11
10
  require 'humongous'
12
11
 
13
- Vegas::Runner.new(Humongous::Application, 'humongous')
12
+ Vegas::Runner.new(Humongous::Application, 'humongous',{
13
+ :environment => "production",
14
+ :app_dir => File.expand_path(File.join('~', '.humongous')),
15
+ :port => 9000,
16
+ :before_run => lambda {|v|
17
+ puts "You are using Humongous(#{Humongous.version})"
18
+ puts "Welcome aboard on Humongous. Enjoy!"
19
+ }
20
+ })
@@ -38,8 +38,8 @@
38
38
  <a class="brand" href="#">Humongous</a>
39
39
  <ul class="nav">
40
40
  <li class="active"><a href="#">Mongo</a></li>
41
- <li><a data-controls-modal="credits" data-backdrop="true" keyboard="true">About</a></li>
42
- <li><a data-controls-modal="license" data-backdrop="true" keyboard="true">License</a></li>
41
+ <li><a data-controls-modal="credits" data-backdrop="true" data-keyboard="true">About</a></li>
42
+ <li><a data-controls-modal="license" data-backdrop="true" data-keyboard="true">License</a></li>
43
43
  </ul>
44
44
  </div>
45
45
  </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: humongous
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre
4
+ version: 0.1.1.pre
5
5
  prerelease: 6
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-20 00:00:00.000000000Z
12
+ date: 2012-01-21 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: vegas
16
- requirement: &2157449760 !ruby/object:Gem::Requirement
16
+ requirement: &2153646000 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - =
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.1.8
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2157449760
24
+ version_requirements: *2153646000
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: sinatra
27
- requirement: &2157448800 !ruby/object:Gem::Requirement
27
+ requirement: &2153644880 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - =
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 1.3.2
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2157448800
35
+ version_requirements: *2153644880
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: bson_ext
38
- requirement: &2157447100 !ruby/object:Gem::Requirement
38
+ requirement: &2153643540 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - =
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 1.5.2
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *2157447100
46
+ version_requirements: *2153643540
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: mongo
49
- requirement: &2157446040 !ruby/object:Gem::Requirement
49
+ requirement: &2153642780 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - =
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: 1.5.2
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *2157446040
57
+ version_requirements: *2153642780
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: json
60
- requirement: &2157445360 !ruby/object:Gem::Requirement
60
+ requirement: &2153642240 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - =
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: 1.6.5
66
66
  type: :runtime
67
67
  prerelease: false
68
- version_requirements: *2157445360
68
+ version_requirements: *2153642240
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: crack
71
- requirement: &2157444220 !ruby/object:Gem::Requirement
71
+ requirement: &2153641520 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - =
@@ -76,7 +76,7 @@ dependencies:
76
76
  version: 0.3.1
77
77
  type: :runtime
78
78
  prerelease: false
79
- version_requirements: *2157444220
79
+ version_requirements: *2153641520
80
80
  description: ! 'Humongous: A Ruby way to browse and maintain mongo instance. Using
81
81
  HTML5.'
82
82
  email: bagwanpankaj@gmail.com
@@ -85,7 +85,7 @@ executables:
85
85
  extensions: []
86
86
  extra_rdoc_files:
87
87
  - LICENSE.txt
88
- - README.rdoc
88
+ - README.markdown
89
89
  files:
90
90
  - LICENSE.txt
91
91
  - VERSION
@@ -103,7 +103,7 @@ files:
103
103
  - lib/humongous/public/styles/application.css
104
104
  - lib/humongous/public/styles/bootstrap.min.css
105
105
  - lib/humongous/views/index.erb
106
- - README.rdoc
106
+ - README.markdown
107
107
  homepage: http://github.com/bagwanpankaj/humongous
108
108
  licenses:
109
109
  - MIT
data/README.rdoc DELETED
@@ -1,19 +0,0 @@
1
- = humongous
2
-
3
- Description goes here.
4
-
5
- == Contributing to humongous
6
-
7
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
- * Fork the project
10
- * Start a feature/bugfix branch
11
- * Commit and push until you are happy with your contribution
12
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2012 bagwanpankaj. See LICENSE.txt for
18
- further details.
19
-