underglow 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/.rspec CHANGED
File without changes
data/Gemfile CHANGED
@@ -1,4 +1,10 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- # Specify your gem's dependencies in underglow.gemspec
4
- gemspec
3
+ # Add dependencies to develop your gem here.
4
+ # Include everything needed to run rake, tests, features, etc.
5
+ group :development do
6
+ gem "rspec", "~> 2.8.0"
7
+ gem "bundler"
8
+ gem "jeweler", "~> 1.8.4"
9
+ gem 'pry'
10
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 James Hu
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
@@ -1,4 +1,36 @@
1
- require "bundler/gem_tasks"
1
+ # encoding: utf-8
2
2
 
3
- # Load underglow tasks for development and testing purposes
4
- Dir[File.join(File.dirname(__FILE__), 'lib/tasks/*.rake')].each { |f| load f }
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ require './lib/underglow/version'
16
+ Jeweler::Tasks.new do |gem|
17
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
18
+ gem.name = "underglow"
19
+ gem.homepage = "http://github.com/axsuul/underglow"
20
+ gem.license = "MIT"
21
+ gem.summary = %Q{Vroom yourself.}
22
+ gem.description = %Q{A library that makes life easier.}
23
+ gem.email = "axsuul@gmail.com"
24
+ gem.authors = ["James Hu"]
25
+ gem.version = Underglow::VERSION
26
+ # dependencies defined in Gemfile
27
+ end
28
+ Jeweler::RubygemsDotOrgTasks.new
29
+
30
+ require 'rspec/core'
31
+ require 'rspec/core/rake_task'
32
+ RSpec::Core::RakeTask.new(:spec) do |spec|
33
+ spec.pattern = FileList['spec/**/*_spec.rb']
34
+ end
35
+
36
+ task :default => :spec
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module Underglow
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
data/lib/underglow.rb CHANGED
File without changes
File without changes
File without changes
data/spec/spec_helper.rb CHANGED
@@ -2,6 +2,7 @@ require 'rubygems'
2
2
  require 'bundler/setup'
3
3
 
4
4
  require 'underglow' # and any other gems you need
5
+ require 'pry'
5
6
 
6
7
  RSpec.configure do |config|
7
8
  # some (optional) config here
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: underglow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,10 +9,26 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-08 00:00:00.000000000 Z
12
+ date: 2012-12-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.8.0
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 2.8.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: bundler
16
32
  requirement: !ruby/object:Gem::Requirement
17
33
  none: false
18
34
  requirements:
@@ -28,7 +44,23 @@ dependencies:
28
44
  - !ruby/object:Gem::Version
29
45
  version: '0'
30
46
  - !ruby/object:Gem::Dependency
31
- name: rake
47
+ name: jeweler
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 1.8.4
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.8.4
62
+ - !ruby/object:Gem::Dependency
63
+ name: pry
32
64
  requirement: !ruby/object:Gem::Requirement
33
65
  none: false
34
66
  requirements:
@@ -43,16 +75,17 @@ dependencies:
43
75
  - - ! '>='
44
76
  - !ruby/object:Gem::Version
45
77
  version: '0'
46
- description: Makes life worth living
47
- email:
48
- - axsuul@gmail.com
78
+ description: A library that makes life easier.
79
+ email: axsuul@gmail.com
49
80
  executables: []
50
81
  extensions: []
51
- extra_rdoc_files: []
82
+ extra_rdoc_files:
83
+ - LICENSE.txt
84
+ - README.md
52
85
  files:
53
- - .gitignore
54
86
  - .rspec
55
87
  - Gemfile
88
+ - LICENSE.txt
56
89
  - README.md
57
90
  - Rakefile
58
91
  - lib/underglow.rb
@@ -60,9 +93,9 @@ files:
60
93
  - lib/underglow/capistrano/deploy.rb
61
94
  - lib/underglow/capistrano/helpers.rb
62
95
  - lib/underglow/capistrano/rake.rb
63
- - lib/underglow/config.rb
64
96
  - lib/underglow/extensions/string.rb
65
97
  - lib/underglow/extensions/symbol.rb
98
+ - lib/underglow/rails/environment.rb
66
99
  - lib/underglow/tasks/db.rake
67
100
  - lib/underglow/tasks/system.rake
68
101
  - lib/underglow/tasks/thin.rake
@@ -70,9 +103,9 @@ files:
70
103
  - spec/extensions/string_spec.rb
71
104
  - spec/extensions/symbol_spec.rb
72
105
  - spec/spec_helper.rb
73
- - underglow.gemspec
74
- homepage: http://www.github.com/axsuul/underglow
75
- licenses: []
106
+ homepage: http://github.com/axsuul/underglow
107
+ licenses:
108
+ - MIT
76
109
  post_install_message:
77
110
  rdoc_options: []
78
111
  require_paths:
@@ -83,6 +116,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
83
116
  - - ! '>='
84
117
  - !ruby/object:Gem::Version
85
118
  version: '0'
119
+ segments:
120
+ - 0
121
+ hash: -2354194240756711182
86
122
  required_rubygems_version: !ruby/object:Gem::Requirement
87
123
  none: false
88
124
  requirements:
@@ -91,8 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
127
  version: '0'
92
128
  requirements: []
93
129
  rubyforge_project:
94
- rubygems_version: 1.8.24
130
+ rubygems_version: 1.8.23
95
131
  signing_key:
96
132
  specification_version: 3
97
- summary: Makes life worth living
133
+ summary: Vroom yourself.
98
134
  test_files: []
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- *.gem
2
- .bundle
3
- Gemfile.lock
4
- pkg/*
data/underglow.gemspec DELETED
@@ -1,20 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "underglow/version"
4
-
5
- Gem::Specification.new do |gem|
6
- gem.name = "underglow"
7
- gem.version = Underglow::VERSION
8
- gem.authors = ["James Hu"]
9
- gem.email = ["axsuul@gmail.com"]
10
- gem.homepage = "http://www.github.com/axsuul/underglow"
11
- gem.summary = gem.description = %q{Makes life worth living}
12
-
13
- gem.files = `git ls-files`.split("\n")
14
- gem.test_files = `git ls-files -- {spec}/*`.split("\n")
15
- gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16
- gem.require_paths = ["lib"]
17
-
18
- gem.add_development_dependency "rspec"
19
- gem.add_development_dependency "rake"
20
- end