abstract_interface 0.1.6 → 0.1.7

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/Rakefile CHANGED
@@ -1,10 +1,9 @@
1
1
  require 'rake_ext'
2
2
 
3
- gem_spec(
3
+ project(
4
4
  :name => "abstract_interface",
5
- :version => "0.1.6",
5
+ :version => "0.1.7",
6
6
  :summary => "Abstract Interface for the Crystal Framework",
7
- :dependencies => %w(crystal),
8
7
 
9
8
  :author => "Alexey Petrushin",
10
9
  :homepage => "http://github.com/alexeypetrushin/abstract_interface"
@@ -0,0 +1 @@
1
+ # gem crystal
@@ -1,3 +1,5 @@
1
+ require 'abstract_interface/gems'
2
+
1
3
  # content_or_self
2
4
  [Hash, OpenObject].each do |aclass|
3
5
  aclass.class_eval do
@@ -1,5 +1,4 @@
1
- require 'rspec_ext'
2
- require "#{__FILE__.dirname}/helper"
1
+ require "spec_helper"
3
2
 
4
3
  #
5
4
  # Don't use should ==, it doesn't works with OpenObject
@@ -1,3 +1,5 @@
1
+ require 'rspec_ext'
2
+
1
3
  lib_dir = "#{__FILE__.parent_dirname}/lib"
2
4
  $LOAD_PATH << lib_dir unless $LOAD_PATH.include? lib_dir
3
5
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abstract_interface
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 6
10
- version: 0.1.6
9
+ - 7
10
+ version: 0.1.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alexey Petrushin
@@ -15,23 +15,10 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-13 00:00:00 +04:00
18
+ date: 2010-10-15 00:00:00 +04:00
19
19
  default_executable:
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
22
- name: crystal
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 3
30
- segments:
31
- - 0
32
- version: "0"
33
- type: :runtime
34
- version_requirements: *id001
20
+ dependencies: []
21
+
35
22
  description:
36
23
  email:
37
24
  executables: []
@@ -45,6 +32,7 @@ files:
45
32
  - readme.md
46
33
  - lib/abstract_interface/abstract_interface.rb
47
34
  - lib/abstract_interface/controller_helper.rb
35
+ - lib/abstract_interface/gems.rb
48
36
  - lib/abstract_interface/haml_builder.rb
49
37
  - lib/abstract_interface/support.rb
50
38
  - lib/abstract_interface/theme.rb
@@ -53,7 +41,7 @@ files:
53
41
  - lib/abstract_interface/view_helper.rb
54
42
  - lib/abstract_interface.rb
55
43
  - spec/haml_builder_spec.rb
56
- - spec/helper.rb
44
+ - spec/spec_helper.rb
57
45
  has_rdoc: true
58
46
  homepage: http://github.com/alexeypetrushin/abstract_interface
59
47
  licenses: []