core_utilities 0.1.0 → 0.1.1
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.
- data/README.rdoc +17 -1
- data/lib/core_utilities/version.rb +1 -1
- data/lib/core_utilities.rb +1 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +13 -0
- data/test/dummy/log/test.log +0 -0
- metadata +34 -4
data/README.rdoc
CHANGED
@@ -1,3 +1,19 @@
|
|
1
1
|
= CoreUtilities
|
2
2
|
|
3
|
-
This project rocks and uses MIT-LICENSE.
|
3
|
+
This project rocks and uses MIT-LICENSE.
|
4
|
+
|
5
|
+
== Additional information
|
6
|
+
|
7
|
+
=== Contributors
|
8
|
+
|
9
|
+
We have a short list of valued contributors. Check them all at:
|
10
|
+
|
11
|
+
http://github.com/caleon/core_utilities/contributors
|
12
|
+
|
13
|
+
=== Maintainers
|
14
|
+
|
15
|
+
* caleon (http://github.com/caleon)
|
16
|
+
|
17
|
+
== License
|
18
|
+
|
19
|
+
MIT License. Copyright 2011 caleon.
|
data/lib/core_utilities.rb
CHANGED
Binary file
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
6
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
7
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
9
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
10
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
11
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
12
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
13
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: core_utilities
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-11-
|
12
|
+
date: 2011-11-16 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rails
|
16
|
+
requirement: &70141262027680 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 3.1.1
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70141262027680
|
14
25
|
- !ruby/object:Gem::Dependency
|
15
26
|
name: activesupport
|
16
|
-
requirement: &
|
27
|
+
requirement: &70141262025480 !ruby/object:Gem::Requirement
|
17
28
|
none: false
|
18
29
|
requirements:
|
19
30
|
- - ~>
|
@@ -21,7 +32,18 @@ dependencies:
|
|
21
32
|
version: 3.1.1
|
22
33
|
type: :runtime
|
23
34
|
prerelease: false
|
24
|
-
version_requirements: *
|
35
|
+
version_requirements: *70141262025480
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: sqlite3
|
38
|
+
requirement: &70141262024300 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70141262024300
|
25
47
|
description: Core extensions with lots of handy methods
|
26
48
|
email:
|
27
49
|
- caleon@gmail.com
|
@@ -69,6 +91,10 @@ files:
|
|
69
91
|
- test/dummy/config/locales/en.yml
|
70
92
|
- test/dummy/config/routes.rb
|
71
93
|
- test/dummy/config.ru
|
94
|
+
- test/dummy/db/development.sqlite3
|
95
|
+
- test/dummy/db/test.sqlite3
|
96
|
+
- test/dummy/log/development.log
|
97
|
+
- test/dummy/log/test.log
|
72
98
|
- test/dummy/public/404.html
|
73
99
|
- test/dummy/public/422.html
|
74
100
|
- test/dummy/public/500.html
|
@@ -123,6 +149,10 @@ test_files:
|
|
123
149
|
- test/dummy/config/locales/en.yml
|
124
150
|
- test/dummy/config/routes.rb
|
125
151
|
- test/dummy/config.ru
|
152
|
+
- test/dummy/db/development.sqlite3
|
153
|
+
- test/dummy/db/test.sqlite3
|
154
|
+
- test/dummy/log/development.log
|
155
|
+
- test/dummy/log/test.log
|
126
156
|
- test/dummy/public/404.html
|
127
157
|
- test/dummy/public/422.html
|
128
158
|
- test/dummy/public/500.html
|