FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
value_objects/value_objects.gemspec at master · tinkerbox/value_objects · GitHub
tinkerbox
/
value_objects
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
5
Code
Issues
1
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
value_objects
/
value_objects.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (22 loc) · 956 Bytes
Breadcrumbs
value_objects
/
value_objects.gemspec
Copy path
File metadata and controls
27 lines (22 loc) · 956 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# coding: utf-8
lib
=
File
.
expand_path
(
'../lib'
,
__FILE__
)
$LOAD_PATH
.
unshift
(
lib
)
unless
$LOAD_PATH
.
include?
(
lib
)
require
'value_objects/version'
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
'value_objects'
s
.
version
=
ValueObjects
::
VERSION
s
.
authors
=
[
'Matthew Yeow'
]
s
.
email
=
[
'matthew.yeow@tinkerbox.com.sg'
]
s
.
summary
=
'Serializable and validatable value objects for ActiveRecord'
s
.
homepage
=
'https://github.com/tinkerbox/value_objects'
s
.
license
=
'MIT'
s
.
files
=
Dir
[
'lib/**/*'
,
'LICENSE.txt'
,
'README.md'
]
s
.
require_paths
=
[
'lib'
]
s
.
required_ruby_version
=
'>= 2.2'
s
.
add_dependency
'activerecord'
,
'~> 4.2'
s
.
add_development_dependency
'actionview'
,
'~> 4.2'
s
.
add_development_dependency
'bundler'
,
'~> 1.11'
s
.
add_development_dependency
'rake'
,
'~> 10.0'
s
.
add_development_dependency
'rspec'
,
'~> 3.0'
s
.
add_development_dependency
'sqlite3'
,
'~> 1.3'
end
Back
|
FazBrowse Home
|
New Git URL